
<!--		
		gyldig=/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/   //regular expression mail adrss
		function testform(){	    							
	if(window.document.contact.name.value==''){
		alert('Sorry you have to write your name.')
		window.document.contact.name.focus()
		return false
	}
	if(!gyldig.test(window.document.contact.email.value)){
	alert('Sorry you have to give me a valid E-mail.')
	window.document.contact.email.focus()
		return false
	}
	if(window.document.contact.subject.value==''){
		alert('Upps I think you miss the subject field')
		window.document.contact.subject.focus()
		return false
	}
	if(window.document.contact.text.value==''){
		alert('You have to write a message. ')
		window.document.contact.text.focus()
		return false
	}
    else  {
        return true
    }
   }
-->
