function GetStats(site,iconsize){

    // url where the page is submitted to
    // change this to the address the script resides on
	var srv=""; //"http://old.ekmpinpoint.com/harvest/";
	var srv2="" ; //"http://www1.ekmpinpoint.com/harvest/";
	var u=srv+"collect.aspx?site="+escape(site);
	//var u2=srv2+"collect.asp?site="+escape(site);
	//Cookie Detection
	var tmpcookie = new Date();
	//var cookCheck
	
	//chkcookie = (tmpcookie.getTime() + '');
	
	//document.cookie = "chkcookie=" + chkcookie + "; path=/";
	//if (document.cookie.indexOf(chkcookie,0) < 0) {
	//cookCheck = 'No';
	//}
	//else {
	//cookCheck = 'Yes';
	//}
	//if (cookCheck == "") {
	//cookCheck = '';
	//}
	// where did he come from?
	var r=document.referrer;
	// where is he now?
	var d=document.location;
	// screen size
	var h=screen.height;
	
	var w=screen.width;
	// screen colordepth
	var c=screen.colorDepth
	// browser
	var n=navigator.appName
	// cpu class, most likely is x86
	var cpu=navigator.cpuClass;
    // get time
    var curdate = new Date();
    var tim = curdate.toLocaleString() ;
	// get system language
	var lang=navigator.systemLanguage;
	// platform
	var p=navigator.platform;
	// Page Title
	var pgt=document.title;
	// random, to prevent the browser from taking a cached image and not do a call to the server
	var rnd=Math.random();

	u+="&d="+escape(d)+"&r="+escape(r)+"&w="+escape(w)+"&h="+escape(h)+"&c="+escape(c)+"&n="+escape(n);
	u+="&cpu="+escape(cpu)+"&p="+escape(p)+"&lang="+escape(lang);
	u+="&tim="+escape(tim)+"&pgt="+escape(pgt)+"&rnd="+escape(rnd);
	document.write('<a target=href="#"><img src="'+u+'" border=0 width='+iconsize+' height='+iconsize+' alt=""></a>');
	//document.write('<a target=href="#"><img src="'+u2+'" border=0 width='+iconsize+' height='+iconsize+' alt=""></a>');
}