
function OpenPopUp(PageURL)   
	{
	 ChildWindow = window.open(PageURL,"Page","width=600,height=400,top=200,left=200,toolbars=no,scrollbars=yes,status=yes,resizable=yes"); 
	}

function OpenSavePopUp(PageURL)   
	{
	 ChildWindow = window.open(PageURL,"Page","width=600,height=400,top=200,left=200,toolbars=yes,scrollbars=yes,status=yes,resizable=yes"); 
	}
function OpenSizedPopUp(PageURL, width, height)   
	{
	 ChildWindow = window.open(PageURL,"Page","width="+ width+",height="+height+",top=200,left=200,toolbars=no,scrollbars=yes,status=yes,resizable=yes"); 
	}