function hippoJawTracker (pageType,userID) {
	
	var info;


	info = '?url=' + escape(window.location);
	info = info + '&screenwidth=' + screen.width;
	info = info + '&screenheight=' + screen.height;
	info = info + '&screendepth=' + screen.colorDepth;
	info = info + '&uid=' + Math.round(100*Math.random());
	info = info + '&pt=' + pageType;
	info = info + '&userid=' + userID;
	
	

	if (encodeURIComponent) {
	
		info = info + '&pagetitle=' + encodeURIComponent(document.title);
        info = info + '&referer=' + encodeURIComponent(document.referrer);
        
 
	} else {
	
		info = info + '&pagetitle=' + escape(document.title);
		info = info + '&referer=' + escape(document.referrer);
	
 		
	}


	

	document.write('<a href="http://www.hippojaw.com"><img src="http://www.hippojaw.com/tracker.asp' + info + '" style="border: 0" alt="hippojaw" /></a>');
}
