function printPage(){
  	var data = document.getElementById('printDiv');
  	if(data){
   		document.printForm.printData.value = data.innerHTML;
    	document.printForm.printTitle.value = document.title;
    	document.printForm.submit();
  	}
}

function doPrint(){
	var el = document.getElementById('printBTN');
	if(el){
		el.style.display = 'none';
	}
	if(!is_mac){ 
		window.print(); 
		if(is_ie5_5up){ 
			window.close(); 
		}
	}else{ 
		alert('Klik op Archief, Print om deze pagina af te drukken.'); 
	}
}