<!--
// JavaScript Document

function popUpHelp(page) {
	var intScrWidth = (window.screen.width/2) - (300 + 10);
	var intScrHeight = (window.screen.height/2) - (200 + 40);
	var win2=window.open(page,"winname","width=520,height=470,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=0,left=" + intScrWidth + ",top=" + intScrHeight + ",screenX=" + intScrWidth +",screenY=" + intScrHeight);
	//bring the newly opened window into focus(front of the screen)
	win2.focus();
}


-->