<!--

function weblocator(theForm)
{
  var checkOK = "0123456789";
  var checkStr = theForm.zip.value;
  var allValid = true;
  var validGroups = true;
  var decPoints = 0;
  var allNum = "";
  for (i = 0;  i < checkStr.length;  i++)
  {
    ch = checkStr.charAt(i);
    for (j = 0;  j < checkOK.length;  j++)
      if (ch == checkOK.charAt(j))
        break;
    if (j == checkOK.length)
    {
      allValid = false;
      break;
    }
    allNum += ch;
  }
  if (!allValid || theForm.zip.value == "" || theForm.zip.value.length < 5)
  {
    alert("Please enter a 5-digit zip code.");
    theForm.zip.focus();
    return (false);
  }
  var sendString = "http://www.zipwise.com/weblocator/results.php?a=" + theForm.acct.value + "&zip=" + theForm.zip.value;
  
  parent.frames['dealerInfo'].location = sendString;
  //myRef = window.open('http://www.zipwise.com/weblocator/results.php?a='+theForm.acct.value+'&zip='+theForm.zip.value+'','Zipwise','resizable=yes,scrollbars=yes,height=1000,width=500',false);
  return false;
}

//-->