function SetCounty( form ) { 
  var newIndex = form.fieldname.selectedIndex; 
  if ( newIndex == 0 ) { 
    alert( "Please select a location!" ); 
  } else { 
    var county = form.fieldname.options[ newIndex ].value; 
    var countyLabel = form.fieldname.options[ newIndex ].text; 
    setCookie("ppac.countyLabel", countyLabel, 5);
    setCookie("ppac.county", county, 5);
    setCookie("ppac.zip", "", 5);
    // Set document.location to the post-county-setting page
    // document.location = "/voter-information/voter-guide/thanks.html";
    document.location.reload();
  } 
} 

function openDir( form ) { 
  var newIndex = form.fieldname.selectedIndex; 
  if ( newIndex == 0 ) { 
    alert( "Please select a location!" ); 
  } else { 
    cururl = form.fieldname.options[ newIndex ].value; 
    window.location.assign( cururl ); 
  } 
}

