// JavaScript Document
<!--
function PopupPage(left,top,width,height,URL)
{
	var windowprops = "location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=no,status=no" +",left="+left+",top="+top+",width=" + width + ",height=" + height;
	popup = window.open(URL,"",windowprops);
}
PopupPage(0,0,400,500,'/pop/pop.htm')
-->
