function LogIt()
{
	var wtl_URL= document.URL;
	var wtl_Title= document.title;

	function A( B, C)
	{
		W+="&"+B+"="+escape(C);
	}
	var t = new Date();
	var W="http"+(document.URL.indexOf('https:')==0?'s':'')+":/Logging.asp?sitename=TEXACOUK";
	A( "tz", t.getTimezoneOffset());
	A( "ch", t.getHours());
	A( "cm", t.getMinutes());
	A( "ti", typeof(wtl_Title)== "string" ? wtl_Title : document.title);
	A( "url", typeof(wtl_URL)== "string" ? wtl_URL : document.URL);
	A( "rf", window.document.referrer);

	document.write('<IMG ID="TEST_TAG" BORDER="0" WIDTH="1" HEIGHT="1" SRC="'+W+'">');
}
LogIt();

