<!--

// function to set the ReferringURL and EntryURL cookies; call on entry into any page

function EnterPage () {
if ( document.referrer != "" && document.referrer.indexOf("ceproviders.com") == -1 && document.referrer.indexOf("ce-server.com") == -1) {
   var nextyear = new Date();
   nextyear.setFullYear(nextyear.getFullYear() + 1);
   document.cookie = "ReferingURL=" + document.referrer + ";path=/;expires=" + nextyear.toGMTString();
   document.cookie = "EntryURL=" + document.URL + ";path=/;expires=" + nextyear.toGMTString();
}
}

// -->
