  <!--
  function csGo() { 
    // UPDATE THESE FOR TRACKING:
    var hrecsg_ht = "hrecsgsearch";
    var hrecsg_entryid = "5086";
    var prevent_popups = "true";  

    // BEGIN CODE
    var hrecsg_url;
    hrecsg_url = "http://bl.homegain.com/";

    // Get city
    var hrecsg_city = document.hsxForm.city.value;

    // Trim white space from ends
    hrecsg_city = hrecsg_city.replace(/^\s*/, '').replace(/\s*$/, ''); 
    hrecsg_city = hrecsg_city.replace(' ', '-').replace(/\s*$/, ''); 

    // Get State
    var hrecsg_state = document.hsxForm.hsx_state.options[document.hsxForm.hsx_state.selectedIndex].value;
    
    // build URL
    if(hrecsg_state != "") {
      hrecsg_url += hrecsg_state;
      hrecsg_url += "/";
      hrecsg_url += hrecsg_city.toLowerCase();
      hrecsg_url += ".html";
    }

    hrecsg_url += "?ht=" + hrecsg_ht;
    hrecsg_url +="_" + hrecsg_city;
    hrecsg_url +="_" +hrecsg_state;
    hrecsg_url += "&entryid=" + hrecsg_entryid;
    if(prevent_popups) hrecsg_url += "&nopopup=1";
    
    // alert(hrecsg_url);  
    window.open(hrecsg_url,'_blank');
  }
  -->
