var WindowObjectReference = null; // global variable

function openRequestedPopup(strUrl, strWindowName){

	if(WindowObjectReference == null || WindowObjectReference.closed){
		WindowObjectReference = window.open(strUrl, strWindowName, "menubar=1,resizable=no,scrollbars=yes,status=yes");
	}else{
		WindowObjectReference.focus();
	};
}