// JavaScript Document

function NewWindow(mypage) 
	{
	var winl = (screen.width - 485) / 2;
	var wint = (screen.height - 420) / 2;
	winprops = 'height=420,width=685,scrollbars=yes,top='+wint+',left='+winl;
	winNew = window.open(mypage, 'CE', winprops);
	if (parseInt(navigator.appVersion) >= 4)
	{
		winNew.focus(); 
	} 
	}
