function trData(){
var name=document.getElementById("name").value;
var mobile=document.getElementById("mobile").value;
var loupan=document.getElementById("loupan").value;
var mianji=document.getElementById("mianji").value;
check_mobile=/^(((13[0-9]{1})|(15[0-9]{1})|(18[0-9]{1}))+d{8})$/;
if(!name){ alert("請輸入您的姓名!");return false;}
if(!mobile){ alert("請輸入您的電話號碼!");return false;}
if(!loupan){ alert("請輸入您的樓盤!");return false;}
if(!mianji){ alert("請輸入您的面積!");return false;}
//if(!(check_mobile.test(mobile)))
//{
// alert("請您輸入正確的電話號碼111!");
//return false;
//}
window.location.;
}