// Generic Popup function
function openPopup(strURL, intWidth, intHeight, strScrollBars) {
	if (strScrollBars == null) strScrollBars = "yes";
	var oWin = window.open(strURL, 'popup', "screenX=0,screenY=0,toolbar=no,location=no,directories=no,status=no,scrollbars=" + strScrollBars + ",menubar=no,resizable=no,fullscreen=no,width=" + intWidth + ",height=" + intHeight);
	oWin.focus();
}