<!--

var inReferrer = escape(document.referrer)+"";

// URL to the tracker
// the question mark must stay at the end!
// REPLACE "www.yourdomain.com" WITH YOUR DOMAIN!
var statsURL = "http://www.jacksonvillecc.com/cgi-bin/lepstats/lepstats_tracker.cgi?";

var sDimensions = screen.width + "_" + screen.height;
var sColr = screen.colorDepth + " bits";

if (navigator.cookieEnabled) { var cookieSupport = navigator.cookieEnabled; }
else { var cookieSupport = "no"; }

var passData = "&cookieSupport=" + cookieSupport + "&sDimensions=" + sDimensions + "&sColr=" + sColr + "&inReferrer=" + inReferrer;

document.write("<img src=\"" + statsURL + passData + "\" alt=\"\" border=\"0\" width=\"0\" height=\"0\">");

// -->