<!--
var win= null;

function NewWindow(mypage,myname,w,h,resizable,scroll,status){
	var winl = (screen.width-w)/2;
	var wint = (screen.height-h)/2;
	settings='height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable='+resizable+',status='+status+',toolbar=no,location=no,menubar=no,dependent=no,alwaysraised'
	win=window.open(mypage,myname,settings)
	win.window.focus();
}
//-->
