
	function popWin(strSpecial, strUrl) {
		window.open(strUrl + "?id=" + strSpecial, "serWin", "width=720, height=600, menubar=no, scrollbars=yes, resizable=yes");
	}
	
	
	function submitCal(e) {
		var iKeyCode=0;
		if (window.event) iKeyCode = window.event.keyCode
		else if (e) iKeyCode = e.which;
		if (iKeyCode == '13') {
			imgGo = document.getElementById('mysubmit');
			imgGo.click();
			return false;
		}
	}