try
{
	var referentie = escape(document.referrer) + "";
	
	if(!referentie)
		referentie = "Direct Request";
}
catch(ex){}

try
{
	var locatie = escape(document.location) + "";
}
catch(ex){}

var js = "Enabled";

var cookies = "";

try
{
	if(navigator.cookieEnabled)
		cookies = "Enabled";
	else
		cookies = "Disabled";
}
catch(ex){}

try
{
	var resolutie = screen.width + "x" + screen.height;
	var kleurdiepte = screen.colorDepth + "Bit";
}
catch(ex){}

try
{
	var appName = navigator.appName;
}
catch(ex){}

var variabelen = "&amp;javascript=" + js + "&amp;cookies=" + cookies + "&amp;resolutie=" + resolutie + "&amp;kleurdiepte=" + kleurdiepte + "&amp;referrer=" + referentie + "&amp;huidigeLocatie=" + locatie + "&amp;appName=" + appName;

var img = "";
img += "<img src='";
img += "http://pieterhoste.be/stats/incomming.php?";
img += variabelen;
img += "' alt='' style = 'border-width: 0px; width: 1px; height: 1px;' />";

document.write(img);