function config(quote, id) {
  document.quote.search.value=quote
  document.quote.id.value=id
}

function checkform ( form )
{  
  if ((form.zipcode.value == "") || (form.zipcode.value == 'Zip Code') ||(form.zipcode.value.length < 5)) {
    alert( "Please enter your 5 digit zipcode." );
    form.zipcode.focus();
    return false ;
  }
  return true ;
}
