// <!-- Set expiration date to a year from now. FIGURE OUT HOW TO MAKE THIS ONE WORK
var expdate = new Date();
var visits;

expdate.setTime(expdate.getTime() +  (48 * 60 * 60 * 1000 * 365));
if(!(visits = GetCookie("visits")))
  visits = 0;
visits++;
SetCookie("visits", visits, expdate, "/", null, false);
document.write("<CENTER><STRONG>"+"You have been to this page "+" "+"<STRONG>"+visits+"</strong></font>"+" <STRONG>"+"time(s) so far!"+"</strong></center>");
   if(visits == 1)
      document.write("<FONT SIZE=+1><EM><CENTER><STRONG>"+" Since this is your first time here, Please read the following!"
+"</strong></em></font>");
// -->
