// Functions																																					m@m.mm */

function formvalidation() {
	naam = document.getElementById('NAME').value;
	if(naam=='' || naam==null) {
		alert('You didn\'t filled a name.');
		document.getElementById('NAME').focus();
		return false;
	}
}




function validate(f) {
  if(f.q.value=="") {
   return false;
  }
  return true;
 }



function formcheck() {
	if(document.getElementById){
	mailadres = document.getElementById("NAME").value;
	
		if(mailadres=null || mailadres=='') {
		alert('You didn\'t filled a name.');
		document.getElementById('NAME').focus();
		return false;
		
		}
		
	}
}




/*
Select and Copy form element script- By Dynamicdrive.com
For full source, Terms of service, and 100s DTHML scripts
Visit http://www.dynamicdrive.com
*/

//specify whether contents should be auto copied to clipboard (memory)
//Applies only to IE 4+
//0=no, 1=yes
var copytoclip=1

function HighlightAll(theField) {
var tempval=eval("document."+theField)
tempval.focus()
tempval.select()
if (document.all&&copytoclip==1){
therange=tempval.createTextRange()
therange.execCommand("Copy")
window.status="Contents highlighted and copied to clipboard!"
setTimeout("window.status=''",1800)
}
}