/*
***************************************************************************
*  This work is the copyright and intellectual property of Deborah Figg.  *
*  Reproduction by any means is strictly prohibited unless prior written  *
*  permission is obtained from the copyright holder.                      *
***************************************************************************
*/
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;
} 
