	function loadPage() {
		setTimeout(document.all.thepage.style.visibility='visible',1);
		}
		
	function validateForm() {
	
	if (document.emailform.name.value == "" || document.emailform.email.value == "" || document.emailform.subject.value == "" || document.emailform.message.value == "")
		{
		alert("Please complete all the fileds in the form");
		}
	else {
		document.all.emailform.submit();
		}
	}
	
		function aboutRayon () {
		document.all.aboutray.style.visibility='visible';
		}
		
	function aboutRayoff () {
		document.all.aboutray.style.visibility='hidden';
		}
		
		var infoblock = 0;
	
		
	function switchyRay() {
		if (infoblock == 0) {
		aboutRayon();
		infoblock = 1;
		
		}
	else {
		aboutRayoff();
		infoblock = 0;
		}
	}
		
	
	function goBack() {
		setTimeout(window.location='contact.html',3000);
		}