  function newWindow(page, name)
  {
	  if ((navigator.appName== "Netscape" && parseInt(navigator.appVersion) >= 4)|| (navigator.appName.indexOf("Microsoft") != -1 && parseInt(navigator.appVersion) >= 4)) 
		{
		  height = screen.height;
		  if (height - 145 > 450) 
			{
			  x = height - 145;
		  } 
			else
			{
			  x = 450;
		  }
	  } 
		else 
		{
		  x = 450;
	  }
	
	  theobject = window.open(page,name,'toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1');
	  theobject.focus();
	  theobject.window.name = name; //This naming scheme works with all browsers including Safari
	  return false;
  }
	
	  function newWin(page, name, wt, ht)
  {
	  if ((navigator.appName== "Netscape" && parseInt(navigator.appVersion) >= 4)|| (navigator.appName.indexOf("Microsoft") != -1 && parseInt(navigator.appVersion) >= 4)) 
		{
		  height = screen.height;
		  if (height - 145 > 450) 
			{
			  x = height - 145;
		  } 
			else
			{
			  x = 450;
		  }
	  } 
		else 
		{
		  x = 450;
	  }		
	  theobject = window.open(page,name,'toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=0,width='+wt+',height='+ht);
	  theobject.focus();
	  theobject.window.name = name; //This naming scheme works with all browsers including Safari
	  return false;
  }