// JavaScript Document

 function SearchHospital()
 {
 
 var p=$("#select_province option:selected").text();
 var c=$("#select_city option:selected").text();
 var ct=$("#select_county option:selected").text();
 var v=GetObj("tbx_Key").value;
 var f=GetObj("drop_SystemSort").value;
  if(p=="请选择"){
   p="";
  }
  if(c=="请选择"){
   c="";
  }
  if(ct=="请选择"){
   ct="";
  }
     window.location.href="/Hospital/SearchHospital.aspx?QueryProvince="+p+"&QueryCity="+c+"&QueryCounty="+ct+"&QueryKey="+v+"&QueryDoctorOffices="+f;
  
 }	
  function SearchDoctor()
 {
 var p=$("#select_province option:selected").text();
 var c=$("#select_city option:selected").text();
 var ct=$("#select_county option:selected").text();
 var v=GetObj("tbx_Key").value;
 var f=GetObj("drop_SystemSort").value;
  if(p=="请选择"){
   p="";
  }
  if(c=="请选择"){
   c="";
  }
  if(ct=="请选择"){
   ct="";
  }
    window.location.href="/Hospital/SearchDoctor.aspx?QueryProvince="+p+"&QueryCity="+c+"&QueryCounty="+ct+"&QueryKey="+v+"&QueryDoctorOffices="+f;
  
 }	
 
   function SearchDoctorOffices()
 {
 var p=$("#select_province option:selected").text();
 var c=$("#select_city option:selected").text();
 var ct=$("#select_county option:selected").text();
 var v=GetObj("tbx_Key").value;
 var f=GetObj("drop_SystemSort").value;
  if(p=="请选择"){
   p="";
  }
  if(c=="请选择"){
   c="";
  }
  if(ct=="请选择"){
   ct="";
  }
    window.location.href="/Hospital/SearchDoctorOffices.aspx?QueryProvince="+p+"&QueryCity="+c+"&QueryCounty="+ct+"&QueryKey="+v+"&QueryDoctorOffices="+f;
  
 }	
