image_url = "/classes/javascript/scribe.php?";

function TrackingInfo(name, value)
	{
	image_url += name + "=" + escape(value.substring(0, 200)) + "&";
	}

llfWebTrack_title = "" + document.title;
llfWebTrack_url = "" + document.location;
llfWebTrack_referer = "" + document.referrer;
llfWebTrack_resolution = "" + screen.width + "x" + screen.height;

TrackingInfo('title', llfWebTrack_title);
TrackingInfo('url', llfWebTrack_url);
TrackingInfo('referer', llfWebTrack_referer);
TrackingInfo('resolution', llfWebTrack_resolution); 
TrackingInfo('visit_type', 'standard');

llfWebTrack = new Image();
llfWebTrack.src = image_url;
 