window.addEvent('domready', function() {
	var lijst = new Element('ul', {
	    'id': 'handig'
	});
	
	var item = new Element('li', {});
	
	var link = new Element('a', {
	    'href': '#',
		'events': {
			'click': function() {
				print( location.href + '?print=true' );
			}
		}
	});
	link.setText('Print deze pagina');
	link.injectInside( item );
	item.injectInside( lijst );
	
	var kolom = $('kolom-links');
	lijst.injectTop( $('kolom-links') );
});

function print( strurl ) {
  popup = window.open( strurl, "help", "width=700, height=600, top=100, left=100, toolbar=0, resizable=1, scrollbars=1, status=0.menubar=0, location=0, directories=0");
  popup.focus();
}
