function validateContact(){	var error_string="";	if(window.document.forms[1].name.value==""){		error_string+="You must type your name.\n";	}				if(window.document.forms[1].email.value==""){		error_string+="You must type your email address.\n";	}		if(window.document.forms[1].message.value==""){		error_string+="You must type a message. \n";	}else{		var the_at3=window.document.forms[1].email.value.indexOf("@");		var the_dot3=window.document.forms[1].email.value.indexOf(".");		var a_space3=window.document.forms[1].email.value.indexOf(" ");		if((the_at3!=-1)&&			(the_at3!=0)&&			(the_dot3!=-1)&&			(the_dot3>the_at3+1)&&			(the_dot3<window.document.forms[1].email.value.length-1)&&			(a_space3==-1)){		}else{			error_string+="Invalid email address. \n";		}	}					if(error_string==""){		return true;	} else {		error_string="Your request could not be processed: \n" + error_string;		alert(error_string);		return false;	}}