<!--
 function nameDefined(ckie,nme)
{
   var splitValues
   var i
   for (i=0;i<ckie.length;++i)
   {
      splitValues=ckie[i].split("=")
      if (splitValues[0]==nme) return true
   }
   return false
}

function delBlanks(strng)
{
   var result=""
   var i
   var chrn
   for (i=0;i<strng.length;++i) {
      chrn=strng.charAt(i)
      if (chrn!=" ") result += chrn
   }
   return result
}
function getCookieValue(ckie,nme)
{
   var splitValues
   var i
   for(i=0;i<ckie.length;++i) {
      splitValues=ckie[i].split("=")
      if(splitValues[0]==nme) return splitValues[1]
   }
   return ""
}
function insertCounter() {
 readCookie()
 displayCounter()
}
 function displayCounter() {
 document.write('<H3 ALIGN="left">')
 document.write("You've visited this page ")
 if(counter==1) document.write("1 time.")
 else document.write(counter+" times")
 document.writeln('</H3>')
 }
function readCookie() {
 var cookie=document.cookie
 counter=0
 var chkdCookie=delBlanks(cookie)  //are on the client computer
 var nvpair=chkdCookie.split(";")
 if(nameDefined(nvpair,"pageCount"))
 counter=parseInt(getCookieValue(nvpair,"pageCount"))
 ++counter
 var futdate = new Date()
 var expdate = futdate.getTime()
 expdate += 3600000 * 24 *30  //expires in 1 hour
 futdate.setTime(expdate)

 var newCookie="pageCount="+counter
 newCookie += "; expires=" + futdate.toGMTString()
 window.document.cookie=newCookie
}
// -->

<!-- Start MegaCounter HEAD tag code -->
<!--
/***********************************************************\
  MegaCounter v1.1
  A "configurable" hit counter for the rest of us...
  by Joe Barta  http://www.pagetutor.com/megacounter/
  document.write("<TABLE CELLSPACING=\"0\" CELLPADDING=\"0\" BORDER=\"0\" BGCOLOR=\"" + back_color + "\"><TR>");
document.write("<TD BGCOLOR=\"" + bg_color + "\"><FONT FACE=\"andale mono,arial\"");
document.write("COLOR=\"" + fg_color + "\"><B>" + counter + "</FONT></B></TD>");
document.write("<TD><a  class=\"navDark\" href=\"javascript:li()\"><FONT SIZE=\"2\" COLOR=\"" + txt_color + "\" FACE=\"arial,helvetica\"><B>&nbsp;" + text_string + "</a></B></FONT></TD>");
document.write("</TR></TABLE>");
\***********************************************************/
<!-- Begin
function insertCounter1() {
<!--
document.write("<TABLE CELLSPACING=\"0\" CELLPADDING=\"0\" BORDER=\"0\" BGCOLOR=\"" + back_color + "\"><TR>");
document.write("<TD BGCOLOR=\"" + bg_color + "\"><FONT FACE=\"andale mono,arial\"");
document.write('<b><A CLASS="navDarkmail" HREF=\"mailto:\?body\=Look, ' + document.title + '. You can see this page at: ' + window.location + '\" onMouseOver="window.status=\'Email this page to your friends\'; return true" TITLE="Email this page to your friends"><b>Send this page to a friend<\/A></b>');
document.write("</TR></TABLE>");
//-->
}
text_string = "visitors since 01/01/06";
singer = "Singer";
album = "Album";
song = "Song";
year = "Year";
program = "Program";
genre = "Genre";
bookmark = "Add To Bookmark List";
txt_color = "#000000"  // Text string color
counter = 000000;      // Counter starts at this,
revision = 0;          // Every time you alter your initial counter value (above), you must also change the revision number.
page_code = 111;         // Unless you want every page to use the same counter, you'll need to use a different page code for each page.
hitsperday = 1;     // How many hits per day you want.
bg_color = ""   // Background color of counter
fg_color = ""   // Foreground color of counter
link_color = "#0000FF" // Color of link back (Powered by MegaCounter)
back_color = "" // Color of white space in counter area
//-->
