
function popL( fileName ) {
	openPop = this.open(fileName,'popL','toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,width=610,height=520,left=100,top=5,screenX=100,screenY=5');
	openPop.focus();
}

function resizeReg( pageName, winWidth ){
	var agt = navigator.userAgent.toLowerCase();
	var is_mac = (agt.indexOf("mac")!=-1);

	var docHeight = document.height ? document.height : is_mac && document.body && document.body.scrollHeight ? document.documentElement.offsetHeight : document.body && document.body.scrollHeight ? document.body.scrollHeight: null;

	var winHeight;

	winWidth += 6;
	winHeight = docHeight - 20;
	window.resizeTo(winWidth,winHeight);
}