<!--
  //
  // 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
    doc_title=(document.title)+"";
    if((doc_title=="undefined")||(doc_title==""))
    {
      doc_title="Untitled";
    }

    //parses the referrer
    doc_refer=escape(document.referrer)+"";
    if((doc_refer=="undefined")||(doc_refer==""))
    {
      doc_refer="Bookmark";
    }

    //sends data
    document.write("<img src='/scripts/mojo/mojo_ws.php?width="+screen.width+"&height="+screen.height+"&doc_location="+location.pathname+"&doc_title="+doc_title+"&doc_refer="+doc_refer+"' border=0 height=1 width=1>");
-->