function popWindow(wWidth, wHeight, wName, dUrl, showScroll) {
	if (showScroll == 1) {
		ourWindow = window.open(dUrl, wName, ' width='+wWidth+', height='+wHeight+',location=no, menubar=no, status=no, toolbar=no, scrollbars=yes, resizable=no')
	} else {
		ourWindow = window.open(dUrl, wName, ' width='+wWidth+', height='+wHeight+',location=no, menubar=no, status=no, toolbar=no, scrollbars=no, resizable=no')
	}
	ourWindow.focus();
}
