//******************************************************************
//  for AnAnalyzer
//  2004-01-17  # 
//******************************************************************

function FncAccesslog(myCounterName)
{
  var CounterName;
  if (typeof(myCounterName) == "undefined"){
    CounterName = 'NoName';
  } else {
    CounterName = myCounterName;
  }

  dN=new Date;
  Mins=dN.getMinutes();
  Secs=dN.getSeconds();
  URL=document.referrer;
  if(URL==""){URL="Unknown";}
  document.write("<IMG SRC=");
  document.write("/script/anlog/logset.cgi?");
  document.write(CounterName);
  document.write(","+document.location.href+","+URL+",");
  document.write(Mins+Secs);
  document.write(">");
}

