﻿ function rapidApp_check()
    {
       var rapidAppName = document.getElementById("rapidAppName").value;
       var rapidAppSex = document.getElementById("rapidAppSex").value;
   	   var rapidAppTel = document.getElementById("rapidAppTel").value;
   	   var rapidAppOther = document.getElementById("rapidAppOther").value;
       var rapidAppAddr = document.getElementById("rapidAppAddr").value;
       
       var name = trim(rapidAppName);
       var sex = trim(rapidAppSex);
       var tel = trim(rapidAppTel);
       var other = trim(rapidAppOther);
       var addr = trim(rapidAppAddr);

   
       if(name == "")  { alert("请正确填写申请人姓名"); setfocus("rapidAppName"); return false; }
       if(sex == "" )  { alert("请正确填写申请人的性别"); setfocus("rapidAppSex"); return false; }
       if(tel == "" )  { alert("请正确填写申请人的联系电话"); setfocus("rapidAppTel"); return false; }
       if(other == "" )  { alert("请正确填写当地还有哪些饰品品牌"); setfocus("rapidAppOther"); return false; }
       if(addr == "" )  { alert("请正确填写计划开店地点"); setfocus("rapidAppAddr"); return false; }
    }

    function  trim(str)
    {
      return str.replace(/(^\s*)|(\s*$)/g, ""); 
    }    
    
    function setfocus(str)
    {
       document.forms["form1"].elements[str].focus();
    }