// JavaScript Document
function eLH(page) {

	if (window.screen) {
        ah = window.screen.availHeight;
		aw = window.screen.availWidth;
    } else {
		ah = 515;
		aw = 750;
	}
	var h = 515;
	var w = 750;
	var page = page;
	windowprops = "scrollbars=auto,width=";
	windowprops += w;
	windowprops += ",height=";
	windowprops += h;
	windowprops += ",location=no,left=";
	windowprops += parseInt(aw-w-35);
	windowprops += ",sceenX=";
	windowprops += parseInt(aw-w-35);
	windowprops += ",top=0,sceenY=0,menubars=no,toolbars=no,scrollbars=no,resizable=yes";
	window.open(page, "Popup", windowprops);
}

