

// change location
function change_location() {
var choice = getChoice();

if ( choice == "Residential" )
        {
          window.open(  "placeholder.html","newwin","width=600 , height=600,resizable=yes") ;
        }
if ( choice == "Land" )
        {
            window.open(  "placeholder.html","newwin","width=600 , height=600,resizable=yes") ;
        }
if ( choice == "Multi_Family" )
        {
           window.open(  "placeholder.html","newwin","width=600 , height=600,resizable=yes") ;
        }
if ( choice == "Commercial_Industrial" )
       {
          window.open(  "placeholder.html","newwin","width=600 , height=600,resizable=yes") ;
       }
if ( choice == "Business_Directory" )
        {
            window.open(  "placeholder.html","newwin","width=600 , height=600,resizable=yes") ;
        }
if ( choice == "Tax_Records")
        {
              window.open(  "tax/index.html","newwin","width=800 , height=600,resizable=yes") ;
         }

}

//get choice
function getChoice() {
        for (var i = 0; i < document.processSearch1.SearchType1.length; i++) {
                if (document.processSearch1.SearchType1.options[i].selected == true)
                {
                  return document.processSearch1.SearchType1.options[i].value;
                  }
                }
                return null
        }
