

	function namedPopUp(Target, Name, Width, Height)
	{
		Fnew = window.open(Target, Name, "menubar=no,status=no,resizable=yes,scrollbars=yes,width="+Width+"px,height="+Height+"px");
		Fnew.focus();
	}

	function popUp(Target, Width, Height)
	{
		namedPopUp(Target, 'w'+Math.ceil(Math.random()*10000), Width, Height);
	}

	function openPdf(Target)
	{
		popUp(Target,700,600);
	}


