function count(id,options,ip,session)
{	var n = navigator;
	var ver = n.appVersion;
	var sver = ver	var d = document;
	var verIE = parseInt(ver.substring(ver.indexOf("MSIE")+5,ver.indexOf("MSIE")+6));	if(verIE>0)	{
		ver=verIE;
	}	else	{ 
		ver=parseInt(ver);
	}
		var u="http://web.vorstehman.se/System/Counter/count.asp?id="+id+"&ip="+ip+"&sid="+session+"&r="+sver;
			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;		}
	}	d.write('<img src="'+u+'" border=0>');	
	}