// JScript source code
function PopUpWindow( page, title)
{
//var features = "dependent=yes,menubar=yes,width=700,height=800,scrollbars=yes,resizable=yes";
  
	var features = "dependent=yes,menubar=yes,scrollbars=yes,resizable";
	var height= 600;
	var width = 840;
  
	var winl = (screen.width - width) / 2;
	var wint = (screen.height - height) / 2;
	winprops = 'height='+height+',width='+width+',top='+wint+',left='+winl+',scrollbars=yes,resizable';
	var win = window.open(page, title, winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
	
}
