<!--
//anti-framing
if(top.location != document.location){
	
	top.location.href = document.location;
	
}

//printversie
function afdrukken(){
	
	if(document.getElementById){
	
		var html = '<html>\n<head>\n<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">\n';
		
		html += '<link rel="stylesheet" type="text/css" href="etc/print.css" media="all">\n<title>';
		
		html += document.title + '</title>\n</head>\n\n<body>\n\n';
		
		var inhoud = document.getElementById('content');
		
		if(inhoud){
			
			html += inhoud.innerHTML;
			
		}
		
		html += '\n\n</body>\n</html>';
		
		var printWin = window.open("","afdrukscherm");
		
		printWin.document.open();
		
		printWin.document.write(html);
		
		printWin.document.close();
		
		printWin.print();
		
	}
	
}

//-->