If you don't quite have the traffic you'd like to your site, you can use your own fake page counter! Funny! Just don't get too carried away when you set the multiplier.... :-)
JavaScript Source Code 3000: Page Details: Fake Counter Simply click inside the window below, use your cursor to highlight the script, and copy (type Control-c or Apple-c) the script into a new file in your text editor (such as NotePad or SimpleText) and save (Control-s or Apple-s). The script is yours!
<!-- TWO STEPS TO INSTALL FAKE COUNTER:
1. Paste the coding into the HEAD of your HTML document 2. Copy the last coding into the BODY of your HTML document -->
<!-- STEP ONE: Copy this code into the HEAD of your HTML document -->
<HEAD>
<SCRIPT LANGUAGE="JavaScript"> <!-- Begin var ran ran = Math.round(Math.random()*50000) function alertUser() { alert("You are visitor number " + ran + " to this page.") } // End --> </SCRIPT>
<!-- STEP TWO: Copy this last code into the HEAD of your HTML document -->
<BODY>
<CENTER> <FORM> <INPUT TYPE="button" VALUE="How many visits?" onClick="alertUser()"> </FORM> </CENTER>