// JavaScript Document

function fnValidate()
{
   RetVal = true;
   if (document.Join.address.value == "Enter Email") {
      alert("Please, enter your email address.");
      RetVal = false;
    } 
   return RetVal;
}