/********************************* nfs_mostwanted.js for EA.com code by Loyal Chow *********************************/ /********************************* GLOBAL VARS *********************************/ var PADDING = 6; var SB_WIDTH = 16; var WIDTH_W_SCROLL = 34; var NAV_COLOR = "#ffffff"; var NAV_ALPHA = 1; var COMP_BORDER_WIDTH = 0; var MAC_ALT_BG_COLOR = "transparent"; function ofAge(age) { var ageDate = new Date(); var ageYear = ageDate.getFullYear()-18; ageDate.setFullYear(ageYear); if (age < ageDate) {return true;} else {return false;} }; function checkForm () { var theform = document.cingular_promo; var status = true; if(theform.name.value=="" || theform.email.value=="" || theform.day.value=="" || theform.month.value=="" || theform.year.value==""){ alert("All fields are required!"); status = false; } if (status) { var age = new Date(); age.setMonth(theform.month[theform.month.selectedIndex].value-1); age.setDate (theform.day [theform.day.selectedIndex].value); age.setYear (theform.year [theform.year.selectedIndex].value); if (ofAge(age)) { theform.birthday.value = (theform.month[theform.month.selectedIndex].value) + '-' + (theform.day [theform.day.selectedIndex].value) + '-' + (theform.year [theform.year.selectedIndex].value); status = true; } else { alert("Sorry, this contest isn't open to your age group.") status = false; } } if (status) { if (theform.optin_one.checked) { theform.newsletter.value = "Y"; } if (theform.optin_two.checked) { theform.share.value = "Y"; } theform.submit(); } }