/*
 ******************************************************************************
 Project       : Tracker for Innter.Net
 File Name     : /js/tracker.js
 Creation Date : 2004/09/22
 Last Modified : $Date: 2004/09/21 20:36:07 $
 Version       : $Revision: 1.0 $
 Desctiption   :
 ******************************************************************************
 */

 var tracker_url = "www.innter.net/tracker.php";

 document.cookie = "cS = 1";

 var URL = location.protocol + "//" +
           tracker_url + "?" +
           "sI=" + site_id +
           "&tI=" + transaction_id +
           "&oI=" + order_id +
           "&pM=" + escape ( marker ) +
           "&pR=" + escape ( window.document.referrer ) +
           "&pF=" + escape ( window.document.location.pathname ) +
           "&qS=" + escape ( window.document.location.search ) +
           "&pT=" + escape ( window.document.title ) +
           "&sW=" + screen.width +
           "&sH=" + screen.height +
           "&sC=" + ( ( ( navigator.appName.substring ( 0, 3 ) == "Mic" ) ) ? screen.colorDepth : screen.pixelDepth ) +
           "&cS=" + ( ( document.cookie ) ? 1 : 0 ) +
           "&tZ=" + ( new Date ( ) ).getTimezoneOffset ( ) / 60 +
           "&rN=" + Math.random ( );

 document.write ( "<img src=\"" + URL + "\" height=\"0\" width=\"0\">" );
