id = "reifepruefung";

if(showme==null) var showme='n';
if(st==null)     var st='js';    // st means show-type


// get the user agent name ----------------------------------
v = navigator.appName;

// get the screen resolution --------------------------------
c=0;
if (v != "Netscape") c = screen.colorDepth;
else c = screen.pixelDepth;

// get the screen size --------------------------------------
s = screen.width+"x"+screen.height;

// get the document's title ---------------------------------
t = escape(document.title);

// get the document's referrer -------------------------------
var f = "";

// if pp_frames is true then try getting the framed referral (without error checking)
if (typeof(pp_frames) != "undefined")
	if (pp_frames)
		f = top.document.referrer;

// get the referral for non-multi-domained-framed sites using a Netscape browser
if ((f == "") || (f == "[unknown origin]") || (f == "unknown") || (f == "undefined"))
	if (document["parent"] != null) 
		if (parent["document"] != null) // ACCESS ERROR HERE!
			if (parent.document["referrer"] != null) 
				if (typeof(parent.document) == "object")
					f = parent.document.referrer; 

// get the referral for the current document if a framed referral wasn't found
if ((f == "") || (f == "[unknown origin]") || (f == "unknown") || (f == "undefined"))
	if (document["referrer"] != null) 
		f = document.referrer;

// convert all the unknown's into blank
if ((f == "") || (f == "[unknown origin]") || (f == "unknown") || (f == "undefined"))
	f = "";

// counter and first login date
var nn = 0;
var ff = "-";
if (document.cookie)
{
  if (document.cookie.substring(0,2) == "n=")
  {
    s = document.cookie.indexOf("&");
    if (s != -1)
      nn = parseInt(document.cookie.substring(2,s));
    s = document.cookie.indexOf("f=");
    if (s != -1)
      ff = document.cookie.substring(s+2,document.cookie.length);
  }
  else
  {
    nn = 1;
    ff = document.cookie;
  }
}
if (ff == "-")
{
  var td = new Date();
  ff = td.toLocaleString() + " ["+String(td.getTimezoneOffset()/60+"]");
}
nn = nn+1;
document.cookie = "n="+nn+"&f="+ff;

// escape the referral
if (nn > 1)
  f = escape(f+" "+document.cookie);
else
  f = escape(f)

// getting data ready to send -------------------------------
r="?id="+id+"&referer="+f+"&r="+s+"&c="+c+"&showme="+showme+"&st="+st+"&title="+t;

// adding logid if called by st='phpjs'
if(jslogid==null) var jslogid = 0;
else r = r + "&jslogid="+jslogid;


if (st=='js') { // calling PowerPhlogger by JavaScript-tag
	if (v != "Microsoft Internet Explorer") {
		r = r+"&url="+document.URL; // $HTTP_REFERER problem with NS,...
	}
	document.open();
	document.write("<script language=\"JavaScript\" type=\"text/javascript\" src=\"http://www.videohilfe.de/counter/pphlogger.php"+r+"\"></script>");
	document.close();
} else { // calling PowerPhlogger by IMG-tag
	rand = Math.round(1000*Math.random());
	r = r+"&b="+rand;  //force the page to load the IMG
	document.open();
	document.write("<img src=\"http://www.videohilfe.de/counter/pphlogger.php"+r+"\" alt=\"\" border=\"0\">");
	document.close();
}

