function mapOver(thisId, on) {

  var current = document.getElementById(thisId);

        if (on) { current.className = 'underlined' }
           else { current.className = 'regtext' }
}

function validateMinimum(theForm)
{
     if(theForm.fname.value=="")
     {
          alert("Please enter First Name");
          theForm.fname.focus();
          return false;
     }
     if(theForm.lname.value=="")
     {
          alert("Please enter Last Name");
          theForm.lname.focus();
          return false;
     }
     if(theForm.phone.value=="")
     {
          alert("Please enter Phone");
          theForm.phone.focus();
          return false;
     }     
     if(theForm.email.value=="")
     {
          alert("Please enter Email");
          theForm.email.focus();
          return false;
     }

     return true;
}

function validateAll(theForm)
{
     if(theForm.fname.value=="")
     {
          alert("Please enter First Name");
          theForm.fname.focus();
          return false;
     }
     if(theForm.lname.value=="")
     {
          alert("Please enter Last Name");
          theForm.lname.focus();
          return false;
     }
     if(theForm.addr1.value=="")
     {
          alert("Please enter Address 1");
          theForm.addr1.focus();
          return false;
     }
     if(theForm.city.value=="")
     {
          alert("Please enter City");
          theForm.city.focus();
          return false;
     }     
     if(theForm.zip.value=="")
     {
          alert("Please enter Zip");
          theForm.zip.focus();
          return false;
     }  
     if(theForm.phone.value=="")
     {
          alert("Please enter Phone");
          theForm.phone.focus();
          return false;
     }     
     if(theForm.email.value=="")
     {
          alert("Please enter Email");
          theForm.email.focus();
          return false;
     }

     return true;
}