function showInDisplay(newText)
 {
    document.getElementById("testimonials").firstChild.nodeValue = newText;
 }
function removeFromDisplay()
{
// var headline = document.getElementById("homeheadlineplaceholder").firstChild.nodeValue;
var headline = "Diverse scholen bezoeken de speelderis op 15 en 17 april"

    headline = document.getElementById("homeheadlineplaceholder").firstChild.firstChild.nodeValue;
    document.getElementById("testimonials").firstChild.nodeValue = headline;
    
//    document.getElementById("testimonials").firstChild.nodeValue = "Op 15 en 17 april zijn er schoolnatuurdagen (zie ook de agenda pagina)";
}
function sendFormOnUnfocus()
{
	document.theform.submit();
}
