/* ------------------ CONFIGURATION ------------------*/
// Die URL des bestehenden Link-Tracking Scripts
// Der geklickte Link wird hinten angefügt
// The URL to the existing Link-Tracking Script
// The clicked link is appended.
var conf_script = "http://www.u-bahn-linie-e.de/SEITE_German/inc/meine_links/count.php?clink=";


/* ------------------ PROGRAM CODE -------------------*/
// Internet Explorer?
var ie = (document.all?true:false);
// Zählvariable
var i;
// The main click function that calls the script on a click
eval("function clk("+ (ie?"":"event") +") { var url = event."+(ie?"srcElement":"target")+"; if (document.images) { (new Image()).src=conf_script+escape(url); }}");
// Links ändern.
for (i=0; i<document.links.length; i++)
{
   if (!document.links[i].onmousedown)
      document.links[i].onmousedown = clk;
}
