Note: For the Programmers amoungst you the script that validates your email address is as follows.
var em;
var ss='@'
em = new String()
function checmail()
{
em=document.forms[0].caddr.value
if(em.indexOf(ss) > 2)
{
document.forms[0].submit()
}
else
{
alert('The Email Address '+ '\n'+ em +'\n' + ' Does not appear to be a valid Address\n'+'Pleas check and Resubmit')
}
}
Leave This Page! [Return]