<!--
//add link form function


function OptInEmailValidate()
{




if (OptInEmail.optinname.value == "")
{
alert("  Please write your NAME. ");
OptInEmail.optinname.focus();
return(false);
}



if(!OptInEmail.optinemail.value.match(/^[\d\w\-\.]+\@(\[?)[\d\w\-\.]+\.([a-z]{2,3}|[\d]{1,3})(\]?)$/i))
{ alert("This is not a valid EMAIL address, please check again...");
OptInEmail.optinemail.focus();
return(false);
}




}



//-->