function marewebstat()
{
	var n=navigator;
	var ver=n.appVersion;
	var d=document;
	var u="http://www.mareonline.nl/usage/mstat_test.php?id=mare";
	
	var verIE=parseInt(ver.substring(ver.indexOf("MSIE")+5,ver.indexOf("MSIE")+6));
	
	if(verIE>0)
	ver=verIE;
	else
	ver=parseInt(ver);

	var minver=n.appMinorVersion;
		
	if(ver>=4)
	{
		var s=screen;
		var w=s.width;
		var h=s.height;
		var c=s.colorDepth;
		if(w)
		u+="&w="+w;
		if(h)
		u+="&h="+h;
		if(c)
		u+="&c="+c;
	}
	u+="&n="+n.platform+"&v1="+ver+"&v2="+minver;
	
	document.write ('<a target=_blank href=http://www.mareonline.nl/usage/viewusage.php><IMG SRC='+u+' border="0" alt="MareStats - Web Statistics"></a>')
}