									<!--
									function validate() {
										check=document.getElementById('email').value;
										if(check.indexOf('@')!=-1) {
											document.getElementById('newsletter_signup').submit();
										} else {
											alert('The Email address you\'ve entered appears to be invalid');
											return false;
										}
									}
									// -->