var days = new Array(8);
days[1] = "Sunday";
days[2] = "Monday";
days[3] = "Tuesday";
days[4] = "Wednesday";
days[5] = "Thursday";
days[6] = "Friday";
days[7] = "Saturday";
var months = new Array(13);
months[1] = "January";
months[2] = "February";
months[3] = "March";
months[4] = "April";
months[5] = "May";
months[6] = "June";
months[7] = "July";
months[8] = "August";
months[9] = "September";
months[10] = "October";
months[11] = "November";
months[12] = "December";
var dateObj = new Date(document.lastModified)
var wday = days[dateObj.getDay() + 1]
var lmonth = months[dateObj.getMonth() + 1]
var date = dateObj.getDate()
var fyear = dateObj.getYear()
if (fyear < 99) 
fyear = fyear + 2000
if (fyear < 1999) 
fyear = fyear + 1900


document.write("<table width='100%' border='0' cellspacing='0' cellpadding='2'>")
document.write("<tr><td>")
document.write("<P><font color='006666'>Last updated: </font>" + date + " " + lmonth + " " + fyear + "<BR>")
document.write("</td> <td  width='20' align='right'>")
document.write("<!--WEBBOT bot='HTMLMarkup' startspan ALT='Site Meter' -->")
document.write("<a href='http://s12.sitemeter.com/stats.asp?site=s12BlagdonLake'  target='_top'>")
document.write("<img src='http://s12.sitemeter.com/meter.asp?site=s12BlagdonLake' alt='Site Meter' border=0></a> ")
document.write("<!--WEBBOT bot='HTMLMarkup' Endspan -->")
document.write("</td></tr></table>")
// End -->