// JavaScript Document
		var WindowObjectReference;
		function OpenRequestedPopup(strUrl, strWindowName)
		{
		if(WindowObjectReference == null || WindowObjectReference.closed)
		{
		WindowObjectReference = window.open(strUrl, strWindowName,"width=780,height=750,resizable=yes,scrollbars=yes ,status=yes");
		}
		else
		{
		WindowObjectReference.focus();
		};
		}
	
