<!--
function checkEmail(checkMail)
{
if (checkMail.length<"6" ||
checkMail.indexOf('@') == -1 || checkMail.indexOf('.') == -1)
{alert (checkMail + "\nis not a valid email address!")
}
else
checkMail=checkMail
return(checkMail)
}
// End -->
