
	
	function sendfriend(lan, pageurl){
	var u = escape(top.window.location.href);
	window.open('pdfpopup.html','sendfriend','width=408,height=282');
	return false;
}

function init() {
	theEmail = document.getElementById('send');
	thePrint = document.getElementById('print');
	if (theEmail) {
		theEmail.onclick = function() {
			sendfriend(this.className,this.href);
			return false;
		}
	}
	if (thePrint) {
		thePrint.onclick = function() {
			window.print();
			return false;
		}
	}
}

if (window.addEventListener) window.addEventListener("load", init, false)
else if (window.attachEvent) window.attachEvent("onload", init)
else if (document.getElementById) window.onload = init

function clear_input(obj,type,def) {
	if (type=="onfocus") {
		if (obj.value==def) obj.value = '';
	} else {
		if (obj.value=='') obj.value = def;
	}
}

var isClicked = false
function cleartext() {
	if (!isClicked)	{
		document.forms['form'].elements['zoeken'].value=''
		isClicked=true
	}
}

