function schzpkssub()
{
   if(document.theformzp.keyword.value=="关键字搜索...")
      {
	    if(((!checkEmpty(document.theformzp.zpSchVocation.value)))&&(!checkEmpty(document.theformzp.province.value)))
      {
	       alert("招聘行业、希望工作省市、关键字，三者必选其一！")
	       return false;
      }
      else
      { 
	    	document.theformzp.action="http://www.528.com.cn/zpsearch.do?method=kySeach";
	      return true;
      }
	  }
	else{
		    document.theformzp.action="http://www.528.com.cn/zpsearch.do?method=kySeach";
	      return true;
	  }
}

function checkEmpty(value)
{
    if(value.length == 0)
    return false;
    var i = 0;
    while(i < value.length)
    {
        if(value.substring(i,i+1) != ' ')
        {
            return true;
        }
        i++;
    }
    return false;
}