function FormVerify() 
	{
	window.alert("bedankt voor je reactie");
	location.href = "home_nl.html";
	}
//=================

function printToday()
    {
        var d = new Date();  // Today's date and time
        document.write(d.toLocaleString());
    }
//====================    
function printLastUpdate()
    {
	var lastmod =  new Date();
	lastmod = document.lastModified; 	// get string of last modified date
	lastmoddate = Date.parse(lastmod);   	// convert modified string to date
	//if(lastmoddate == 0){               	// unknown date (or January 1, 1970 GMT)   
	//	document.writeln("Lastmodified: Unknown");   } 
	//else {   document.writeln("LastModified: "+ lastmod );}

	//var m =  new Date()
	//m = document.lastModified;
	//var upd =  m.toLocaleString();
	//var p = upd.length-3;
	//document.write("Last update " + upd.substring(p, 0));
   }
