//Day Display

dayList = new Array ("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
monthList = new Array ("January","February","March","April","May","June","July","August","September","October","November","December")

now = new Date

//mapWindow

	function mapkWindow() {
	mapkWindow = window.open('images/citymap.jpg', 'mapWin', 'scrollbars=yes,width=541,height=431')
	mapkWindow.focus()
	}
	
//mapbWindow

	function mapbWindow() {
	mapbWindow = window.open('images/bobbmap.jpg', 'mapWin', 'scrollbars=yes,width=551,height=732')
	mapbWindow.focus()
	}

//maptWindow	

	function maptWindow() {
	maptWindow = window.open('disclaim.html', 'mapWin', 'scrollbars=yes,width=600,height=400')
	maptWindow.focus()
	}

//newWindow	

	function newWindow() {
	newWindow = window.open('map.html', 'mapWin', 'scrollbars=yes,width=600,height=400')
	newWindow.focus()
	}

//jumpTo

function jumpTo(newLoc) {
	newPlace = newLoc.options[newLoc.selectedIndex].value

	if (newPlace !="") {
		window.location.href = newPlace
	}
}

function upDate () {
	da = new Date(document.lastModified) 	// Create a Date Object set to the last modifed date
	db = da.toGMTString() 	// Convert to a String in "predictable formt"
	dc = db.split(" ") 	// Split the string on spaces
	if ( eval( dc[3] ) < 1970 ) dc[3] = eval( dc[3] ) +100 	// Correct any date purporting to be before 1970
	db = dc[1] + " " + dc[2] + " " + dc[3] 	// Ignore day of week and combine date, month and year
	document.write (db)
	}