<!--
var Nav_browser = document.layers
if (Nav_browser) { 
var beginWidth = innerWidth;
var beginHeight = innerHeight; 
                            }        
function reloadWindow() {
if (innerWidth != beginWidth || innerHeight != beginHeight) 
location.reload();
                            }
if (Nav_browser) onresize = reloadWindow
var isNav4, isIE4
if (navigator.appVersion.charAt(0) == "4") {
if (navigator.appName == "Netscape") {
isNav4 = true
} else if (navigator.appVersion.indexOf("MSIE") != -1) {
isIE4 = true
}
}
function MakeArray(n) {
	this.length = n
	return this
}
monthNames = new MakeArray(12)
monthNames[1] = "January"
monthNames[2] = "February"
monthNames[3] = "March"
monthNames[4] = "April"
monthNames[5] = "May"
monthNames[6] = "June"
monthNames[7] = "July"
monthNames[8] = "August"
monthNames[9] = "September"
monthNames[10] = "October"
monthNames[11] = "November"
monthNames[12] = "December"
dayNames = new MakeArray(7)
dayNames[1] = "Sunday"
dayNames[2] = "Monday"
dayNames[3] = "Tuesday"
dayNames[4] = "Wednesday"
dayNames[5] = "Thursday"
dayNames[6] = "Friday"
dayNames[7] = "Saturday"
linkNames = new MakeArray(7)
linkNames[1] = "www.foreignwire.com/"
linkNames[2] = "www.news.bbc.co.uk/"
linkNames[3] = "www.nasa.gov/"
linkNames[4] = "www.meto.gov.uk/"
linkNames[5] = "www-tech.mit.edu/Shakespeare/works.html/"
linkNames[6] = "www.lastminute.com/"
linkNames[7] = "www.wcities.com/"
linkdescribeNames = new MakeArray(7)
linkdescribeNames[1] = "Excellent news and current affairs service sorted by country. Find out what\'s going on back home:"
linkdescribeNames[2] = "What's happening in the world NOW? Click here for the quickest hot-links to the latest news:"
linkdescribeNames[3] = "Is there anyone out there? Check out NASA's search for extraterrestrial life in space:"
linkdescribeNames[4] = "To grill or not to grill? Find out the weather in your area before setting up the barbie!"
linkdescribeNames[5] = "Shakespeare couldn\'t spell his own name! Check out the Bard\'s works online:"
linkdescribeNames[6] = "Always leaving plans until the last minute? Then this is the site for you:"
linkdescribeNames[7] = "Want travel or tourist information for all the major cities in the world? There\'s even the weather forecast:"
sayingNames = new MakeArray(9)
sayingNames[1] = "To believe God is to worship God"
sayingNames[2] = "Zeal without knowledge is fire without light"
sayingNames[3] = "Our words are a faithful index of the state of our souls"
sayingNames[4] = "God is a busy worker, but he loves help"
sayingNames[5] = "One loving soul sets another on fire"
sayingNames[6] = "Being wise is better than being strong"
sayingNames[7] = "Dream the impossible dream. Dreaming it may make it possible"
sayingNames[8] = "Truth overstated leads to error"
sayingNames[9] = "Tact is the intelligence of the heart"

function getDay(oneDate) {
	var theDay = dayNames[oneDate.getDay() + 1]
return theDay
}

function customDateString(oneDate) {
	var theDay = dayNames[oneDate.getDay() + 1]
	var theMonth = monthNames[oneDate.getMonth() + 1]
return theDay + ", " + theMonth + " " + oneDate.getDate()
}
function dayPart(oneDate) {
	var theHour = oneDate.getHours()
	if (theHour < 12)
		return "morning"
	if (theHour < 18)
		return "afternoon"
	return "evening"
}
//-->
