function SysPopOpen(strurl)
	{
	// can vary position
	var popUpWidth = 500;
	var popUpHeight = 400;
	var x = ((screen.width - popUpWidth)/2);
	var y = ((screen.height - popUpHeight)/2);
	window.status="Done";
	
	window.open('SysReq.asp?pid='+strurl, 'SysInfoWindow', 'toolbar=1,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,HEIGHT='+popUpHeight+',WIDTH='+popUpWidth+',top='+y+',left='+x+',screenX='+x+',screenY='+y+'');
	}
	      
 function TermsOpen()
	{
	// can vary position
	var popUpWidth = 500;
	var popUpHeight = 400;
	var x = ((screen.width - popUpWidth)/2);
	var y = ((screen.height - popUpHeight)/2);
	window.status="Done";
	
	window.open('terms.asp', 'TermsInfoWindow', 'toolbar=1,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,HEIGHT='+popUpHeight+',WIDTH='+popUpWidth+',top='+y+',left='+x+',screenX='+x+',screenY='+y+'');
	}
