		
function funMakePopup(strUrl, strName, strParms, strPopupfocus) { 
	/* Open a popup window */

	var objPopupWin = window.open(strUrl,strName,strParms); 
	
	if  (strPopupfocus == "self") {
		self.focus();
	} else {
		objPopupWin.focus();
	}
	return;
} 
