// Generic function to send mail 
function sendMail(){ 
    var title = document.title; 
	var url = window.location.href; 
	var str='mailto:?subject='+title+'&body='+url; 
	location.href = str; 
} 

// Generic function to print current page 
function printWindow() {if (navigator.userAgent.indexOf('MSIE 4') > 0){alert("Druk op Ctrl-P om de informatie af te drukken");} else {window.print();}}

