function resetform() {
document.forms[1].elements[1]=="";
}
function submitForms() {
if (isCname() && isTel1() && isEmail() && isCountry())
if (confirm("You are about to e-mail your submission. \n\nOK to submit.    Cancel to abort."))
{
alert("\nYour submission will now be sent. \n\nPress the Home Page Button once the submission is complete to return to our home page.\n\nThank you for joining our mailing list!");
return true;
}
else
{
alert("\n You have chosen to abort the submission.");
return false;
}
else 
return false;
}
function isCname() {
if (document.forms[1].elements[0].value == "")
{
alert ("\nPlease enter your name.")
document.forms[1].elements[0].focus();
return false;
}
return true;
}
function isTel1() {
if (document.forms[1].elements[2].value == "") {
alert ("\nPlease enter your Contact Number.")
document.forms[1].elements[2].focus();
return false;
}
return true;
}
function isEmail() {
if (document.forms[1].elements[4].value == "") {
alert ("\nPlease enter your Email.")
document.forms[1].elements[4].focus();
return false;
}
return true;
}
function isCountry() {
if (document.forms[1].elements[6].value == "") {
alert ("\n Please enter your Country.")
document.forms[1].elements[6].focus();
return false;
}
return true;
}

