
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

function ValidateEmail(x){
	if( x.email.value == "" || x.email.value == "Your mail" ){
		alert("請輸入您的 E-Mail");
		return false;
	}else{
		if( !is_email_format( x.email.value ) ){
			alert("E-Mail 格式不正確！");
			return false;
		}
	}

	x.submit();
}

