<!-- Hide from non-JavaScript browsers

// Data Check script for customer contact forms V 1.1 - 7/22/08 - SBT
// Copyright The Talley Press, 2000 - 2008
// Filename dcheck.js

function datacheck(ival)
{
   // Recheck email addresses again
   if (document.forms[1].email.value != document.forms[1].email2.value)
  {
    window.alert("Please enter same address in both email fields.");
    document.forms[1].email.focus();
    return false
  }

    if (ival == 0)
  {
    // Bad Answer - machine input or sloppy person - ask for redo
    window.alert("Please select Subject from options.");
    document.forms[1].xyzzy.value = "";
    return false
  }

  // Good Answer here - flag to submit and set cgi flag to allow followthrough
  document.forms[1].xyzzy.value = "1";
  return true
}

function Form1_Validator()
{
  if (document.forms[1].email.value != document.forms[1].email2.value)
  {
    window.alert("Please enter same address in both email fields.");
    document.forms[1].email.focus();
  }
  
  return
}

// End of File

//-->