// add this script in any page that needs to 'tellCuriousRobot(..)' a hitt coming in
 function createXMLHttpRequest() {
   try { return new XMLHttpRequest(); } catch(e) {}
   try { return new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) {}
   try { return new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) {}
   // alert("XMLHttpRequest not supported");
   return null;
 }

function tellCuriousRobot()
{
	var filename = this.location.href.substring(this.location.href.lastIndexOf('/') + 1);

	var xhReq = createXMLHttpRequest();
//	xhReq.onreadystatechange = onResponse;
//	xhReq.open("GET", "http://www.zhouji.net/curiousrobot.php?pagename="+filename, true);
	xhReq.open("GET", "curiousrobot.php?pagename="+filename, true);
	xhReq.send(null);
}

// function onResponse() {
	// do nothing
// }
