	var childWindow = null;
	
	if (!document.all){
		document.captureEvents(Event.CLICK);
	}
	document.onclick = function(){
		if (childWindow != null && !childWindow.closed){
			childWindow.focus();
		}
	}
	
	function pickPopup(id,strName){
		opener.childControlID.value= id;
		opener.childControlText.value = strName;
		self.close();
	}

	function popup(objControlID,objControlText,strPageName) {
		//var childWindow;

		childWindow = window.open(strPageName, "selectWindow", "width=600,height=400,scrollbars=1");
		childWindow.opener = self;
		self.childControlID = objControlID;
		self.childControlText = objControlText;
	}
