<!-- 
function popUp(URL, Height, Width) 
{
	var Options = ",status=yes,toolbar=yes,menubar=no,scrollbars=yes,resizable=yes,screenX=0,screenY=0,left=0,top=0";
	//alert(URL + ', ' + Title + ', ' + Height + ', ' + Width);
	//alert('Options: ' + Options);
	//alert(Title);
	var popWindow = window.open(URL,'','width='+ Width +',height=' + Height + Options);
	popWindow.focus;
}
//-->