function printCopyrightDate() {
document.write('2009');
}

//alert("You got in.");

//The below function makes sure values are valid for the form
function checkForm(yEmail) {
//var email=yEmail;
//alert(email);

var message="";
var atSymbol = yEmail.indexOf('@');
var period = yEmail.indexOf('.');
var space = yEmail.indexOf(' ');
//alert(atSymbol);

   if (yEmail == "") { // Check if email is null
      message = "Please enter an e-mail address\n";
   }
   if (yEmail.length < 4 && yEmail != "") { // Check if email is too short
      message += "Email address looks too short\n";
   }
   if (atSymbol < 1 && yEmail != "") {
      message += "Email address is missing an @ symbol\n";
   }
   if (period == -1 && yEmail != "") {
      message += "Email address is missing a period.\n";
   }
   if (period < atSymbol && yEmail != "") {
      message += "Email address is not correct.\n";
   }

   if (message.length > 0) { // is there an error message?
      alert( message ); // display error message 
      return false; // return false, not ok to process 
      }
   else {
      return true; // no error message to display, return ok to process 
   }

} // End Function

function verifyState() {

alert (Your_State)
}

function testing() {
   alert("You are here");
}