/*
 * webstat.js
 * (c) Jeroen Peters
 *
 * Web statistieken functies
 */

function log() {
  var scrd = 0;
  var res  = 0;
  var br   = navigator.appName;
  res  = screen.width + "x" + screen.height;
  br != "Netscape" ? scrd=screen.colorDepth : scrd=screen.pixelDepth;
  var ref = "";
  if (top.document.referrer != "")
    ref = "ref="  + escape(top.document.referrer) + "&";
  var doc = escape(document.location.pathname + document.location.search);
  document.write("<img src=\"/cgi-bin/log.pl?" + ref + "page=" + doc +
    "&res=" + res + "&scrd=" + scrd + "\" width=0 height=0 border=0>");
}
