/*
以後
*/
function sendmail(aft) {
	if (aft.name.value=='') {
		alert('請輸入貴姓大名 !!!');
		aft.name.focus();
		return false;
	}
	if (aft.tel.value=='') {
		alert('請輸入聯絡電話 !!!');
		aft.tel.focus();
		return false;
	}
	if (aft.email.value=='') {
		alert('請輸入郵件信箱 !!!');
		aft.email.focus();
		return false;
	}
	if ((aft.email.value !='') && (aft.email.value.indexOf('@',0) == -1 || aft.email.value.indexOf('.',0) == -1)) {
		alert('郵件信箱格式錯誤 !!!');
		aft.email.focus();
		return false;
	}
	if (aft.subject.value=='') {
		alert('請輸入標題主旨 !!!');
		aft.subject.focus();
		return false;
	}
	if (aft.message.value=='') {
		alert('請輸入內容說明 !!!');
		aft.message.focus();
		return false;
	}
	if (!confirm('確定送出訊息嗎?')) {
		return false;
	}
	aft.submit.click=true;
	aft.submit.disabled=true;
}
function isreset(aft) {
	if (confirm('確定清除表單內容重寫嗎?')) {
		aft.reset();
		aft.name.focus();
	}
	return false;
}
