function PopWindow(Url, PageWidth, PageHeight)
{
	var popUp;
	var windowProps = "width=1,height=1,scrollbars=0,noresize,top=300,left=300";
	popUp = window.open(Url, "PopWindow", windowProps);
	popUp.resizeTo(PageWidth, PageHeight);
}

function PopWindow2(Url, PageWidth, PageHeight)
{
	var popUp;
	var windowProps = "width=1,height=1,scrollbars=1,noresize,top=300,left=300";
	popUp = window.open(Url, "PopWindow", windowProps);
	popUp.resizeTo(PageWidth, PageHeight);
}