var id = null;
function Popup(page,height,width,WinName)
	{
	 if(id!=null)
		{if(!id.closed){id.close();}}	

	 id = window.open(page,WinName,"scrollbars=yes,menubar=yes,resizable=yes,width="+width+",height="+height).focus(WinName);

	}
