/*This is the javascript function to confirm the email address inputted on the form*/

function saveEmail(theEmail)
{
   var emailCookie = new Cookie(document, "email", 0, '/', '');
   emailCookie.email=theEmail;
   emailCookie.store();
}
