function GetStats(site,iconsize){

    // url where the page is submitted to
    // change this to the address the script resides on
	var srv="http://server/worcesternet/stats/";
	var u = srv+"info.asp?site="+escape(site);
	// where did he come from?
	var r = document.referrer;
	// where is he now?
	var d = document.location;
	// screen size
	var s = screen.width + "x" + screen.height;
	// screen colordepth
	var c = screen.colorDepth
	// browser
	var n = navigator.appName + " " + navigator.appVersion + "." + navigator.appMinorVersion
	// cpu class, most likely is x86
	var cpu = navigator.cpuClass;
	// platform
	var p = navigator.platform;
	// random, to prevent the browser from taking a cached image 
	// and not do a call to the server
	var rnd = Math.random();
//	alert('Gathered info: Referred by: '+r+'; Location: '+d+'; Screen Size: '+s+'; Color Depth: '+c+'; Browser: '+n+'; CPU: '+cpu+'; Platform: '+p+';');
	var dets = srv+"info.asp?site="+escape(site)+"&d="+escape(d)+"&r="+escape(r)+"&s="+escape(s)+"&c="+escape(c)+"&n="+escape(n)+"&cpu="+escape(cpu)+"&p="+escape(p);
	tempWin = window.open(dets,'tw','width=10,height=10');
	tempWin.close();
//	alert('executed info!');
//	document.write('<a target=_blank href="'+srv+'stats.asp?site='+escape(site)+'"><img src="'+u+'" border=0 width='+iconsize+' height='+iconsize+' alt="Statistics"></a>');

}