<!-- //
function popupPage(page,ht,wd,scroll) {
	if (window.screen) {
		ah = window.screen.availHeight;
		aw = window.screen.availWidth;
	} else {
		ah = 480;
		aw = 640;
	}
	var h = ht;
	var w = wd;
	winprops = "scrollbars="+scroll+",width=" +w +",height=" +h +",location=no,left=";
	winprops += parseInt(aw-w-35) +",sceenX=" +parseInt(aw-w-35) +",top=0,sceenY=0,menubars=no,toolbars=no,resizable=yes";
	window.open(page,"newPage"+(Math.round((Math.random()*9)+1)),winprops);
}
// -->
