// JavaScript Document
<!--
function check(e) {
	if(document.images){
		re = /(@.*@)|(\.\.)|(^\.)|(^@)|(@$)|(\.$)|(@\.)/;
		re_two = /^.+\@(\[?)[a-zA-Z0-9\-\.]+\.([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/;
		if(!e.match(re) && e.match(re_two)){
			return(-1);		
		} 
	}
}

function checkF(f){
	
		if(f.name.value.length < 1){
			f.name.focus();
			alert("Please enter your name.");
			return (false);
		}
		
		if(f.number.value.length < 1){
			f.number.focus();
			alert("Please enter your phone number.");
			return (false);
		}

	
		if(f.email.value.length < 1){
			f.email.focus();
			alert("Please enter your e-mail address.");
			return (false);
	
		}

	
		if(f.security_code.value.length < 1){
			f.security_code.focus();
			alert("Please enter the security code shown.");
			return (false);
	
		}		
}
// -->
