<!-- 
// Global Array

var randomarr1 = new Array ();
randomarr1[0] = 8;
randomarr1[1] = 9;
randomarr1[2] = 10;
randomarr1[3] = 11;
randomarr1[4] = 12;
randomarr1[5] = 13;
 
var randomarr2 = new Array ();
randomarr2[0] = 2;
randomarr2[1] = 3;
randomarr2[2] = 4;
randomarr2[3] = 5;
randomarr2[4] = 6;
randomarr2[5] = 7;


var random1=randomarr1[Math.floor(Math.random()*5)];
var random2=randomarr2[Math.floor(Math.random()*5)];
var randomans = random1 - random2;

//Will also check to make sure the email is not blank
function frmValidate(theForm) {

//alert("Will this work?");
//var validemail = vaild(theForm);
//alert(validemail);
//alert("The Email Value is:" validemail);

 if (theForm.whoareyou.value == randomans && theForm.email.value != '') {
	theForm.randomans.value=randomans;
	theForm.submit();
	} 
	else if(theForm.email.value == '')
		alert("An email address is required. Please enter one in now.");
	else
		alert("Please check your answer to the security question.");



}

//-->