Email List
Subscribe to the Embassy Entertainment mailing list below.
required field
var fieldstocheck = new Array(); fieldnames = new Array();
function checkform() {
for (i=0;i if(! compareEmail())
{
alert("Email addresses you entered do not match");
return false;
}
return true;
} function addFieldToCheck(value,name) {
fieldstocheck[fieldstocheck.length] = value;
fieldnames[fieldnames.length] = name;
} function compareEmail()
{
return (document.subscribeform.elements["email"].value == document.subscribeform.elements["emailconfirm"].value);
}