var newWindow = null;
var popupWindow = null;
var ftWindow = null;
var resWindow = null;

function openWindow(){
  leftPos = 0
  topPos = 0
  if (screen){
     leftPos = (screen.width -250)/2;
	 topPos = (screen.height - 75)/2;
  }
  newWindow= window.open("","Search","toolbar=no,directories=no,menubar=no,scrollbars=no,resizable=no,height=75,width=250,left="+leftPos+",top="+topPos);
  newWindow.location.href="../textsrch.html";
/*  var winX = screen.width / 3;
  var winY = screen.height / 3;
  newWindow.moveTo(winX,winY)*/
  //newWindow.focus()
}

function closeWindow(){
   if (newWindow){
      newWindow.close()
   }
   if (popupWindow){
      popupWindow.close()
   }
/*   if (ftWindow){
      ftWindow.close()
   }
*/
   if (resWindow){
      resWindow.close()
   }
}
