// JavaScript Document
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features).focus();
}

function sendMail() {
	if (document.mailform.to.value == "") {
		alert('メールアドレスを入力してください。');
		return false;
	}
	return confirm('メールを送信しますか？');
}

function onKeyPress() {
	var keycode;
	if (window.event) keycode = window.event.keyCode;
	else if (e) keycode = e.which;
	else return true;
	if (keycode == 13) {//&#50644;&#53552;&#53412;&#47484; &#45580;&#47104;&#51012;&#46412;
		alert("&#51204;&#49569;&#54616;&#49884;&#47140;&#47732; &#54869;&#51064; &#48260;&#53948;&#51012; &#45572;&#47476;&#49464;&#50836;");
		return false
	}
	return true 
}
document.onkeypress = onKeyPress;