function checkEmail (strng) {
var error = "";
if (strng == "") {
   error = "Please enter your email address.\n";
}
return error;
}

