<!--
sendLeadLanderInfo();
function sendLeadLanderInfo(){
	// This function writes a 1x1 pixel image to the page. It's source is actually a request back
	// to trackalyzer.com that sends with it our account id, the page url, the referrer, and the
	// ip address of the user's host
	
	myid =10299;
	mypage = escape(location.href);
	myref = escape(document.referrer);
	myip = escape(location.hostaddress);
	  
	if (myref=="")
	    {
	     myref="None";
	    }
	if (mypage=="")
	    {
	    mypage="Unavailable";
	    }
	var linkreefer = "https://trackalyzer.com/trackalyze.asp?r=" + myref + "&p=" + mypage + "&i=" + myid;
	document.write("<img src='"+linkreefer+"' width='1' height='1' border='0' alt='' />");
}
// -->
