function InputClear() {
	document.f.name.value = '';
	document.f.email.value = '';
	document.f.re_email1.value = '';
	document.f.re_email2.value = '';
	document.f.area.selectedIndex = 0;
	document.f.type.selectedIndex = 0;
	document.f.writing.value = '';
}

function InputSubmit() {
	var flg = 0;
	var mail1, mail2;

	if (document.f.name.value == '') {
		flg = 1;
	}
	if (document.f.email.value == '') {
		flg = 1;
	}
	if (document.f.re_email1.value == '') {
		flg = 1;
	}
	if (document.f.re_email2.value == '') {
		flg = 1;
	}
	mail1 = document.f.email.value;
	mail2 = document.f.re_email1.value + '@' + document.f.re_email2.value;
	if (mail1 != mail2) {
		flg = 1;
	}
	if (document.f.type.selectedIndex == 0) {
		flg = 1;
	}
	if (document.f.writing.value == '') {
		flg = 1;
	}
	if (flg == 0) {
		document.f.action = 'confirm.php';

		document.f.submit();

	} else {

		document.f.action = 'err.php';

		document.f.submit();

	}

}



function SendMail() {

	document.f.action = 'sendmail.php';

	document.f.submit();

}

function openMemberWindow (url) {
	var object = window.open (url, "Members_Salon", "width=420, height=480, scrollbars=1, resizable=1");
	object.focus ();
	return object;
}

