	function popup(URL,winName,width,height) {
		var popUpWin = open(URL, winName, 'scrollbars=yes,toolbar=no,menubar=no,resizable=no,status=no,location=no,directories=no,copyhistory=no,height='+height+',width='+width);
	}
	
	function popupNoScroll(URL,winName,width,height) {
		var popUpWin = open(URL, winName, 'scrollbars=no,toolbar=no,menubar=no,resizable=no,status=no,location=no,directories=no,copyhistory=no,height='+height+',width='+width);
	}
