	function doPopUp(strURL,nWidth,nHeight,bMenubar,bToolbar) {
		popUpWindow = window.open(strURL,'remote','toolbar=' + bToolbar + ',scrollbars=1,location=0,statusbar=0,menubar=' + bMenubar + ',resizable=0,width=' + nWidth + ',height=' + nHeight);
		return false;
	}
	function doPopUp2(strURL,nWidth,nHeight,bMenubar,bToolbar,bScrollbar) {
		popUpWindow = window.open(strURL,'remote','toolbar=' + bToolbar + ',scrollbars=' + bScrollbar + ',location=0,statusbar=0,menubar=' + bMenubar + ',resizable=0,width=' + nWidth + ',height=' + nHeight);
		return false;
	}
	function doPopUp3(strURL,nWidth,nHeight,bMenubar,bToolbar,bScrollbar,strName) {
		popUpWindow = window.open(strURL,strName,'toolbar=' + bToolbar + ',scrollbars=' + bScrollbar + ',location=0,statusbar=0,menubar=' + bMenubar + ',resizable=0,width=' + nWidth + ',height=' + nHeight);
		return false;
	}
	function doPopUpUnique(strURL,strWindowName,nWidth,nHeight,bMenubar,bToolbar,bScrollbar) {
		popUpWindow = window.open(strURL,strWindowName,'toolbar=' + bToolbar + ',scrollbars=' + bScrollbar + ',location=0,statusbar=0,menubar=' + bMenubar + ',resizable=0,width=' + nWidth + ',height=' + nHeight);
		return false;
	}
 
