// JavaScript Document
var securityCode = (Math.round((Math.random()*9)+1)).toString() + (Math.round((Math.random()*9)+1)).toString() + (Math.round((Math.random()*9)+1)).toString() + (Math.round((Math.random()*9)+1)).toString();
		
		function onSubmit(f) {
			if (f.securityCode.value != securityCode) {
				alert("The security code entered does not match the security code provided.  Please enter the security code exactly as it is displayed on the page.");
				return false;
			}
		}
