function webplan_open() {
	window.open('/reservation/web_plan.html','web_plan','width=880,height=700,toolbar=no,status=no,directories=no,scrollbars=yes,resizable=yes,location=no'); 
	}

function map_open() {
	window.open('/info/map.html','web_plan','width=500,height=620,toolbar=no,status=no,directories=no,scrollbars=yes,resizable=yes,location=no'); 
	}

function map_open_en() {
	window.open('/eng/info/map.html','web_plan','width=500,height=620,toolbar=no,status=no,directories=no,scrollbars=yes,resizable=yes,location=no'); 
	}

function InputCheck() {
	var str = '';

	if (document.f.fullname.value == '') {
		str += '・お名前を入力してください<br>';
	}
	if (document.f.tel.value == '') {
		str += '・電話番号を入力してください<br>';
	}
	if (document.f.email.value == '') {
		str += '・メールアドレスを入力してください<br>';
	}
	if ((document.f.re_email1.value == '') || (document.f.re_email2.value == '')) {
		str += '・メールアドレス[再入力]を入力してください<br>';
	}
	if ((document.f.email.value != '') && (document.f.re_email1.value != '') && (document.f.re_email2.value != ''))
	{
		var email1 = document.f.email.value;
		var email2 = document.f.re_email1.value + '@' + document.f.re_email2.value;
		if (email1 != email2) {
			str += '・メールアドレスが一致しません<br>';
		}
	}
	if (str != '') {
		document.getElementById('errmsg').innerHTML = str;
		window.scrollTo(0, 400);
		return false;
	}
}

//special page w:660
function Open_pop660 (url) {
	var object = window.open (url, "", "width=660, height=700, scrollbars=1, resizable=1");
	object.focus ();
	return object;
}
