<!--
  //
  // Mojo Webstats Script
  //    made by Mesedilla Studios
  //
  // Visit http://mojowebstats.sourceforge.net for more information
  // Email mojo_ws@mesedilla.com for any assistance with this software
  //
  // (c) 2002 Fritz Mesedilla [http://www.mesedilla.com]
  // ------------------------------------------------------------------
  // If you are going to use this script, please keep this copyright notice.
  //

    //parses the title
    if((typeof document.title=="undefined")||(document.title=="")) {
	doc_title="Untitled";
    } else {
	doc_title=escape(document.title);
    }
    //parses the referrer
    if((typeof document.referrer=="undefined")||(document.referrer==""))
    {
	doc_refer="Bookmark";
    } else {
	doc_refer=escape(document.referrer)+"";
    }
    if((typeof location.pathname=="undefined")||(location.pathname==""))
    {
	doc_location="/";
    } else {
	doc_location=escape(location.href)+"";
    }
    rand = Math.floor(Math.random()*10000);

    //sends data
    document.write("<img src='http:\/\/ushud.com\/stats\/stats.php?"+rand+"&width="+screen.width+"&height="+screen.height+"&doc_location="+doc_location+"&doc_title="+doc_title+"&doc_refer="+doc_refer+"' border=0 height=1 width=1>");
-->