	function confirmThis(message) {
		if(confirm(message)) return true;
		return false;
	}

	function PopUpWindow(url, hWind, nWidth, nHeight, nScroll) {
		var cToolBar = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=" + nScroll + ",resizable=0,width=" + nWidth + ",height=" + nHeight
  		var popupwin = window.open(url, hWind, cToolBar);
	}
