function checkform ( QuoteForm )
{
  if (QuoteForm.nospam.value != "superseal") {
    alert( "Did you enter our No Spam security word? Please double check." );
    QuoteForm.nospam.focus();
    return false ;
  }
  return true ;
}

function checkform ( InquiryForm )
{
  if (InquiryForm.nospam.value != "superseal") {
    alert( "Did you enter our No Spam security word? Please double check." );
    InquiryForm.nospam.focus();
    return false ;
  }
  return true ;
}