<!-- 
function NewWindow(mypage, myname, w, h, scroll, resize, tbar, mbar, status, locbar, directories) 
{
	var winL = (screen.width - w) / 2;
	var winT = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+winT+',left='+winL+',scrollbars='+scroll+',resizable='+resize+',toolbar='+tbar+',menubar='+mbar+',status='+status+',location='+locbar+',directories='+directories
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
	return win;
}
// -->
