If you have the distinct honor of being on my Top Ten List, then you might want to put this code somewhere in your page.


Top Ten List .gif with link:

<a href="/~sandler/topten.html><img
src="/~sandler/uca-ani.gif" width=87 height=98></a>

JavaScript to automatically say how long you've been on the list:

Put this code as you see it (with the line breaks) wherever you want the number to be. You can count by weeks or by days, whichever you want. Substitute the approximate date I put you on where it says January 15, 1997 - in that format.

Count by weeks:

<script language="JavaScript">
<!-- Hide from old browsers
today = new Date()
onList = new Date("January 15, 1997")
msPerWeek = 24 * 60 * 60 * 1000 * 7;
weeksOn = (today.getTime()-onList.getTime())/msPerWeek;
weeksOn = Math.round(weeksOn);
document.write(weeksOn)
// -->
</script>

Count by days:

<script language="JavaScript">
<!-- Hide from old browsers
today = new Date()
onList = new Date("January 15, 1997")
msPerDay = 24 * 60 * 60 * 1000 ;
daysOn = (today.getTime()-onList.getTime())/msPerDay;
daysOn = Math.round(daysOn);
document.write(daysOn)
// -->
</script>


Enjoy!