






<!-- Begin

// document.write("js2PagesCounted=",pagecount,"\n");

    var agt=navigator.userAgent.toLowerCase();

    var is_ie     = ((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1));
    var is_ie3    = (is_ie && (is_major < 4));
    var is_ie4    = (is_ie && (is_major == 4) && (agt.indexOf("msie 4")!=-1) );
    var is_ie4up  = (is_ie && (is_major >= 4));
    var is_ie5    = (is_ie && (is_major == 4) && (agt.indexOf("msie 5.0")!=-1) );
    var is_ie5_5  = (is_ie && (is_major == 4) && (agt.indexOf("msie 5.5") !=-1));
    var is_ie5up  = (is_ie && !is_ie3 && !is_ie4);
    var is_ie5_5up =(is_ie && !is_ie3 && !is_ie4 && !is_ie5);
    var is_ie6    = (is_ie && (is_major == 4) && (agt.indexOf("msie 6.")!=-1) );
    var is_ie6up  = (is_ie && !is_ie3 && !is_ie4 && !is_ie5 && !is_ie5_5);

    var is_major = parseInt(navigator.appVersion);
    var is_minor = parseFloat(navigator.appVersion);

    var is_aol   = (agt.indexOf("aol") != -1);
    var is_aol3  = (is_aol && is_ie3);
    var is_aol4  = (is_aol && is_ie4);
    var is_aol5  = (agt.indexOf("aol 5") != -1);
    var is_aol6  = (agt.indexOf("aol 6") != -1);
    var is_aol7  = (agt.indexOf("aol 7") != -1);
    var is_aol8  = (agt.indexOf("aol 8") != -1);
    
    var is_firefox   = (agt.indexOf("firefox") != -1);

// document.write("detection_js_UID=",UID);

if (is_firefox) {
var BrowserFirefox=is_firefox;

// document.write("detection_js2Browser_firefox=",BrowserFirefox);

}

// document.write("detection_js2Browser_firefox=",BrowserFirefox);

var BrowserAOLVer='0';

if (is_aol) {
var BrowserAOL=is_aol;

// document.write("detection_js2Browser_aol=",BrowserAOL);

}
if (is_aol3){
 BrowserAOLVer='AOL_V3';

// document.write("js2BrowserVer_aol3=",is_aol3);

}
if (is_aol4){
 BrowserAOLVer='AOL_V4';

// document.write("js2BrowserVer_aol4=",is_aol4);

}
if (is_aol5){
 BrowserAOLVer='AOL_V5';

// document.write("js2BrowserVer_aol5=",is_aol5);

}
if (is_aol6){
 BrowserAOLVer='AOL_V6';

// document.write("js2BrowserVer_aol6=",is_aol6);

}
if (is_aol7){
 BrowserAOLVer='AOL_V7';

// document.write("js2BrowserVer_aol7=",is_aol7);

}
if (is_aol8){
 BrowserAOLVer='AOL_V8';

// document.write("js2BrowserVer_aol8=",is_aol8);

}

// document.write("js2BrowserAOLVer=",BrowserAOLVer);
// document.write("js2BrowserAOL=",BrowserAOL);

if (BrowserAOL) {

// document.write("js2BrowserAOLReset=",BrowserAOL);

if (BrowserAOLVer != '0') {

// document.write("js2BrowserAOLVer0=",BrowserAOLVer);

 BrowserAOL = BrowserAOLVer ;
}
}

function replaceSubstring(inputString, fromString, toString) {
   // Goes through the inputString and replaces every occurrence of fromString with toString
   var temp = inputString;
   if (fromString == "") {
      return inputString;
   }
   if (toString.indexOf(fromString) == -1) { // If the string being replaced is not a part of the replacement string (normal situation)
      while (temp.indexOf(fromString) != -1) {
         var toTheLeft = temp.substring(0, temp.indexOf(fromString));
         var toTheRight = temp.substring(temp.indexOf(fromString)+fromString.length, temp.length);
         temp = toTheLeft + toString + toTheRight;
      }
   } else { // String being replaced is part of replacement string (like "+" being replaced with "++") - prevent an infinite loop
      var midStrings = new Array("~", "`", "_", "^", "#");
      var midStringLen = 1;
      var midString = "";
      // Find a string that doesn't exist in the inputString to be used
      // as an "inbetween" string
      while (midString == "") {
         for (var i=0; i < midStrings.length; i++) {
            var tempMidString = "";
            for (var j=0; j < midStringLen; j++) { tempMidString += midStrings[i]; }
            if (fromString.indexOf(tempMidString) == -1) {
               midString = tempMidString;
               i = midStrings.length + 1;
            }
         }
      } // Keep on going until we build an "inbetween" string that doesn't exist
      // Now go through and do two replaces - first, replace the "fromString" with the "inbetween" string
      while (temp.indexOf(fromString) != -1) {
         var toTheLeft = temp.substring(0, temp.indexOf(fromString));
         var toTheRight = temp.substring(temp.indexOf(fromString)+fromString.length, temp.length);
         temp = toTheLeft + midString + toTheRight;
      }
      // Next, replace the "inbetween" string with the "toString"
      while (temp.indexOf(midString) != -1) {
         var toTheLeft = temp.substring(0, temp.indexOf(midString));
         var toTheRight = temp.substring(temp.indexOf(midString)+midString.length, temp.length);
         temp = toTheLeft + toString + toTheRight;
      }
   } // Ends the check to see if the string being replaced is part of the replacement string or not
   return temp; // Send the updated string back to the user
} // Ends the "replaceSubstring" function



var xy = navigator.appVersion;
xz = xy.substring(0,4);
if (navigator.javaEnabled()) var JavaYes=0;
else var JavaYes=1;
 var Browser=(navigator.appName);
 var CodeName=(navigator.appCodeName);
 var CodeVer=(xz);
 var CodePlatForm=(navigator.platform);
 var PagesViewed=(history.length);
 
 
// document.write("BrowserFirefox=",BrowserFirefox);
 
 
if (BrowserFirefox == true) {
 var Browser='Firefox';

// document.write("BrowserFirefox=true-",BrowserFirefox);

}

if (Browser != '') {

// document.write("js2Browser=",Browser);

 Browser = Browser ;
}
 
if (CodeName != '') {

// document.write("js2CodeName=",CodeName);

 CodeName = CodeName ;
}
if (CodeVer != '') {

// document.write("js2CodeVer=",CodeVer);

 CodeVer = CodeVer ;
}

// document.write("js2PagesViewed=",PagesViewed);

 JavaEnabled=JavaYes;
 var ResolutionW=(screen.width);
 var ResolutionH=(screen.height);
 var Resolution=ResolutionW+" x "+ResolutionH;

 Browser= replaceSubstring(Browser, " ", "%20");
 Resolution= replaceSubstring(Resolution, " ", "%20");

// document.write("js2Browser=",Browser);
// document.write("js2Resolution=",Resolution);
// document.write("JavaEnabled=",JavaEnabled);

  stats = "referrer=" + escape(window.document.referrer);
  stats += "&agent=" + escape(navigator.userAgent);

// document.write("StoreName=",StoreName);

//   var MyURL="http://www.go-keys.org/phpjs/tracking1.php?UID="+UID+"&Browser="+Browser+"&BrowserAOL="+BrowserAOL+"&BrowserAOLVer="+BrowserAOLVer+"&CodeName="+CodeName+"&CodePlatForm="+CodePlatForm+"&PagesViewed="+PagesViewed+"&JavaEnabled="+JavaEnabled+"&Resolution="+Resolution+"&EpochSet="+EpochSet+"&PagesCounted="+pagecount+"&CodeVer="+CodeVer;
  var MyURL=trkdir+"/tracking1.php?UID="+UID+"&Browser="+Browser+"&BrowserAOL="+BrowserAOL+"&BrowserAOLVer="+BrowserAOLVer+"&CodeName="+CodeName+"&CodePlatForm="+CodePlatForm+"&PagesViewed="+PagesViewed+"&JavaEnabled="+JavaEnabled+"&Resolution="+Resolution+"&EpochSet="+EpochSet+"&PagesCounted="+pagecount+"&CodeVer="+CodeVer+"&BrowserFirefox="+BrowserFirefox;
  document.write("<img border='0' height='1' width='1' src="+MyURL+">");

// document.write("MyURL1=",MyURL);

//  document.write(MyURL);
// End -->








