/// Start Check Browser ///
	var intBrowser = 0;
	if ((navigator.appName == 'Microsoft Internet Explorer') && (parseInt(navigator.appVersion) >= 4)) {
		intBrowser = 1;
	}
	else {
		if ((navigator.appName == 'Netscape') && (parseInt(navigator.appVersion) >= 3)) {
			intBrowser = 1;
	}
		else {
			intBrowser = 0;
		}
	}
/// End Check Browser ///

/// Start Image On and Off ///

	if (intBrowser == 1) {
		homeOff = new Image ();
		homeOff.src = "images/Home-Off.jpg";
		homeOn = new Image ();
		homeOn.src= "images/Home-On.gif";

		guestsOff = new Image ();
		guestsOff.src = "images/GuestList-Off.jpg";
		guestsOn = new Image ();
		guestsOn.src = "images/GuestList-On.gif";

		graphsOff = new Image ();
		graphsOff.src = "images/GraphCharts-Off.jpg";
		graphsOn = new Image ();
		graphsOn.src = "images/GraphCharts-On.gif";

		aboutOff = new Image ();
		aboutOff.src = "images/AboutUs-Off.jpg";
		aboutOn = new Image ();
		aboutOn.src = "images/AboutUs-On.gif";

		contactOff = new Image ();
		contactOff.src = "images/ContactUs-Off.jpg";
		contactOn = new Image ();
		contactOn.src = "images/ContactUs-On.gif";

		linksOff = new Image ();
		linksOff.src = "images/InstitutionalLinks-Off.jpg";
		linksOn = new Image ();
		linksOn.src = "images/InstitutionalLinks-On.gif";

		videosOff = new Image ();
		videosOff.src = "images/Videos-Off.jpg";
		videosOn = new Image ();
		videosOn.src = "images/Videos-On.gif";

		surveyOff = new Image ();
		surveyOff.src = "images/Survey-Off.jpg";
		surveyOn = new Image ();
		surveyOn.src = "images/Survey-On.gif";

		programsOff = new Image ();
		programsOff.src = "images/ProgramList-Off.jpg";
		programsOn = new Image ();
		programsOn.src = "images/ProgramList-On.gif";

		privacyOff = new Image ();
		privacyOff.src = "images/PrivacyStatement-Off.jpg";
		privacyOn = new Image ();
		privacyOn.src = "images/PrivacyStatement-On.gif";

		scheduleOff = new Image ();
		scheduleOff.src = "images/TvSchedule-Off.jpg";
		scheduleOn = new Image ();
		scheduleOn.src = "images/TvSchedule-On.gif";
	}
	function imgOn(imgName) {
		if (intBrowser == 1) {	
			document[imgName].src = eval(imgName + "On.src");
		}
	}
	function imgOff(imgName) {
		if (intBrowser == 1) {	
			document[imgName].src = eval(imgName + "Off.src");
		}
	}

/// End Image On and Off ///

/// Start Pop Up Horizontal Window ///

function popWindow(imgName) {
	var strImg = imgName + ".html"
	popWin = window.open( strImg,"a" , "menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,width=640,height=600");
	popWin.window.focus();
}

/// End Pop Up Horizontal Window ///

/// Start Pop Up Vertical Window ///

function popWindowV(imgName) {
	var strImg = imgName + ".html"
	popWinV = window.open( strImg,"b" , "menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,width=480,height=760");
	popWinV.window.focus();
}

/// End Pop Up Vertical Window ///

/// Start Pop Up Small Horizontal Window ///

function popSWindow(imgName) {
	var strImg = imgName + ".html"
	popSWin = window.open( strImg,"c" , "menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,width=320,height=600");
	popSWin.window.focus();
}

/// End Pop Up Small Horizontal Window ///

/// Start Pop Up Small Vertical Window ///

function popSWindowV(imgName) {
	var strImg = imgName + ".html"
	popSWinV = window.open( strImg,"d" , "menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,width=240,height=550");
	popSWinV.window.focus();
}

/// End Pop Up Small Vertical Window ///

/// Start Copyright Year///

function copyrightYear() {
	var today = new Date()
	result = today.getFullYear()
	document.write ("Copyright " + today.getFullYear())
}

/// End Copyright Year ///

/// Start Convert Month ///

function convertMonth(monthValue) {
  // This function converts a monthValue (usually returned from the getMonth() method)
  // numeral into the string text for the month of the year.
  var strMonth  = new Array();
  strMonth.length = 12; // necessary to 'allocate' array space.
  strMonth[0] = "January";
  strMonth[1] = "February";
  strMonth[2] = "March";
  strMonth[3] = "April";
  strMonth[4] = "May";
  strMonth[5] = "June";
  strMonth[6] = "July";
  strMonth[7] = "August";
  strMonth[8] = "September";
  strMonth[9] = "October";
  strMonth[10] = "November";
  strMonth[11] = "December";
  return strMonth[monthValue];
}

/// End Convert Month ///

/// Start Current Date ///

function currentDate() {
	var now = new Date();
	intMonth = now.getMonth();
	intMonth1 = parseInt(intMonth);
	strMonth1 = convertMonth(intMonth1);
	intYear = now.getFullYear();
	intDate = now.getDate();
	document.write (strMonth1, "&nbsp;", intDate, ",&nbsp;", intYear);
}

/// End Current Date ///
