
function counter(domain){

	var url='http://stats2.flabber.nl/cntr/flabberstats2.gif';
	
	
	var totaal=1;
	var teller=0;
	var pluginsArray=new Array(
				"QuickTime",
				"Shockwave Flash",
				"Shockwave for Director",
				"Windows Media Services",
				"RealPlayer",
				"LiveAudio",
				"Java");

	var np=navigator.plugins;

	for(var x=0;x<pluginsArray.length;x++){ 
		for(var i=0;i<navigator.plugins.length;i++){
			if(navigator.plugins[i].name.indexOf(pluginsArray[x])>=0) totaal|=teller;
		}
		teller*=2;
	}

	url+="?p="+totaal;

		
	url+="&r="+ escape(document.referrer);
	if(screen.width) url+="&w="+screen.width;
	if(screen.height) url+="&h="+screen.height;
	if(screen.colorDepth) url+="&c="+screen.colorDepth;


	document.write('<a target=_blank href="http://stats2.flabber.nl/?d='+domain+'"><img src="'+url+'&d='+domain+'" border=0 alt="Flabber Statistics" width=19 height=18></a>');
}