$(function(){
	$('a.reload').click(function(e){
		$.nyroModalManual({
			type: 'iframe',
			reload:true, // geimplementeerd 2009-07-01
			resizable: false,
			url: this.href });
		return false;
	});

	$('a.tracker').click(function(e){
		$.nyroModalManual({
			type: 'iframe',
			reload:true, // geimplementeerd 2009-07-01
			resizable: false,
			css: {
			    content: {
			      overflow: 'hidden'
			    }
			  },
			minHeight: 265,
			height: 265,
			url: this.href });
		return false;
	});
});