<!--
nav = navigator.appName;
c = 0;
if (nav != "Netscape") {
	c = screen.colorDepth;
} else {
	c = screen.pixelDepth;
}
s = screen.width+" X "+screen.height;
ref = escape(document.referrer);
//url = escape(document.URL);
var sPath = window.location.pathname;
//var sPage = sPath.substring(sPath.lastIndexOf('\\') + 1);
var url = sPath.substring(sPath.lastIndexOf('/') + 1);
if (url == ''){ var url = 'index.php'; }
query = "?screen="+s+"&color="+c+"&mnm_url="+url+"&mnm_ref="+ref+"";
// CHANGE THIS PATH TO THE PATH WHERE counter.php RESIDES INCLUDING /counter.php
// i.e: http://www.my-server.com/stats/counter.php
mnm_counter_path = "java_counter.php";
document.open();
document.write("<script language=\"JavaScript\" type=\"text/javascript\" src=\""+mnm_counter_path+""+query+"\"></script>");
document.close();
-->