window.addEvent('domready', function(){	$('contact-form').addEvent('submit', function(){		if($('email').value.trim()=='' && $('address').value.trim()=='' && $('telephone').value.trim()==''){			alert("You must fill in either your email, address or telephone so we can get back to you!");			return false;		}	});});
