function popupWindow(strURL)
{
	newWindow = window.open(strURL, "reference", "width=640,height=550,left=200,top=100,scrollbars=1,toolbar=0,location=0,directories=0,status=0,menuBar=0,resizable=0");
	newWindow.focus();
}
function policyWindow(strURL)
{
	w=500;
	h=400;
	l=(screen.width-w)/2;
	t=(screen.height-h)/2;
	newWindow = window.open(strURL, "policy", "width="+w+",height="+h+",left="+l+",top="+t+",scrollbars=1,toolbar=0,location=0,directories=0,status=0,menuBar=0,resizable=0");
	newWindow.focus();
}
function forWindow(strURL)
{
	window.location=strURL;
}
function popWin(str,winName,h,w){
	l=(screen.width-w)/2;
	t=(screen.height-h)/2;
	newWindow = window.open(str, winName, "width="+w+",height="+h+",left="+l+",top="+t+",scrollbars=1,toolbar=0,location=0,directories=0,status=0,menuBar=0,resizable=0");
	newWindow.focus();
}