<!--
	function updateTime() 
	{
		var now = new Date();
		var theHour = now.getHours();
		var theMin = now.getMinutes();
		var theSecs = now.getSeconds();
		var theTime = "" + ((theHour > 12) ? theHour - 12 : theHour);
		theTime += ((theMin < 10) ? ":0" : ":") + theMin;
		theTime += ((theSecs < 10) ? ":0" : ":") + theSecs;
		theTime += (theHour >= 12) ? " pm" : " am";
		
		var theDay = now.getDay();
		var theDayNum = now.getDate();
		var theMonth = now.getMonth();
		var theYear = now.getFullYear();
		
		var Days = new Array(7);
		Days[0] = "SUNDAY";
		Days[1] = "MONDAY";
		Days[2] = "TUESDAY";
		Days[3] = "WEDNESDAY";
		Days[4] = "THURSDAY";
		Days[5] = "FRIDAY";
		Days[6] = "SATURDAY";
		
		var Months = new Array(12);
		Months[0] = "JANUARY";
		Months[1] = "FEBRUARY";
		Months[2] = "MARCH";
		Months[3] = "APRIL";
		Months[4] = "MAY";
		Months[5] = "JUNE";
		Months[6] = "JULY";
		Months[7] = "AUGUST";
		Months[8] = "SEPTEMBER";
		Months[9] = "OCTOBER";
		Months[10] = "NOVEMBER";
		Months[11] = "DECEMBER";		
		
		theDay = Days[theDay];
		theMonth = Months[theMonth];
		
		document.all("showDateTime").innerHTML = theDay + ' ' + theMonth + ' ' + theDayNum + ', ' + theYear + ' at ' + theTime;
		timerID = setTimeout("updateTime()",1000);				
	}
	
	function loadPage(myURL)
	{
		window.location.href = myURL;
	}	
			
	function showHide(parentElement,flgHideElements)
	{	
		//Check to see if children elements exist
		if (parentElement.childNodes) 
		{
			//Store the number of children collection
			//in a variable
			var childElements = parentElement.childNodes;
				
			//Loop through the children collection
			for (var i = 0; i < childElements.length; i++)
			{
				//Only look at elements that belong to the
				//span tag
				if (childElements[i].tagName == 'SPAN')
				{
					//If the child element is hidden the display it
					if (childElements[i].style.display == 'none' && !flgHideElements)
					{						
						showLvl(childElements[i]);
					} else {	
					//If the child element is displayed then hide
					//the child element and all children elements
					//of the child element
						hideLvl(childElements[i]);
						//showHide(childElements[i],true);
					}
				}
			}		
		}
		//Do not let the onclick event of spans above the parent
		//element to fire
		cancelParentEvent()
	}	
	
	function showLvl(lvlID)
	{
		lvlID.style.display = '';
	}
	
	function hideLvl(lvlID)
	{
		lvlID.style.display = 'none';
	}	
	
	function cancelParentEvent()
	{
		//Stop all events by parent elements
		//from firing
		window.event.cancelBubble = true;
	}	
	
	function launchPopUp(file,name,winwidth,winheight)
	{
		var winleft  = (screen.width - winwidth)/2;
		var wintop   = (screen.height - winheight)/2;	
		var winprops = "width="+winwidth+",height="+winheight+",left="+winleft+",top="+wintop+"toolbar=no,directories=no,menubar=no,resizable=yes,scrollbars=yes"; 
		hwnd = window.open(file,name,winprops);                  
	}

	function loadTopicImage(strTabNm)
	{
		if (strTabNm == 'VISION')
			document.getElementById("CIRC").innerHTML = '<img src="images/vision_circle.jpg" width="74" height="75" border="0">&nbsp;&nbsp;';
		else if (strTabNm == 'EXPLORE')
			document.getElementById("CIRC").innerHTML = '<img src="images/explore_circle.jpg" width="74" height="75" border="0">&nbsp;&nbsp;';
		else if (strTabNm == 'INTERACT')
			document.getElementById("CIRC").innerHTML = '<img src="images/interact_circle.jpg" width="74" height="75" border="0">&nbsp;&nbsp;';
		else if (strTabNm == 'SOURCE')
			document.getElementById("CIRC").innerHTML = '<img src="images/source_circle.jpg" width="74" height="75" border="0">&nbsp;&nbsp;';
		else if (strTabNm == 'CONNECT')
			document.getElementById("CIRC").innerHTML = '<img src="images/connect_circle.jpg" width="74" height="75" border="0">&nbsp;&nbsp;';
		else if (strTabNm == 'GALLERY')
			document.getElementById("CIRC").innerHTML = '<img src="images/gallery_circle.jpg" width="74" height="75" border="0">&nbsp;&nbsp;';
	}
	
	function showHideRow(name)
	{
		var obj=document.getElementsByName(name);
		for (var i = 0; i < obj.length; i++)
		{
		   if (obj.item(i).style.display == 'none')
			   obj.item(i).style.display = '';
		   else
			   obj.item(i).style.display = 'none';
	   }
	}	
	
	function CaptionOn(strTabNm)
	{
		if (strTabNm == 'VISION') {
			document.getElementById("CAP1").innerHTML = '<img src="images/vision_caption.jpg" width="373" height="69" border="0" name="v_cap">';
			showHideRow('vlvl2');
		} else if (strTabNm == 'EXPLORE') {
			document.getElementById("CAP2").innerHTML = '<img src="images/explore_caption.jpg" width="255" height="69" border="0" name="e_cap">';
			showHideRow('elvl2');
		} else if (strTabNm == 'INTERACT') {
			document.getElementById("CAP3").innerHTML = '<img src="images/interact_caption.jpg" width="362" height="69" border="0" name="i_cap">';
			showHideRow('ilvl2');
		} else if (strTabNm == 'SOURCE') {
			document.getElementById("CAP4").innerHTML = '<img src="images/source_caption.jpg" width="215" height="69" border="0" name="s_cap">';
			showHideRow('slvl2');
		} else if (strTabNm == 'CONNECT') {
			document.getElementById("CAP5").innerHTML = '<img src="images/connect_caption.jpg" width="272" height="69" border="0" name="c_cap">';
			showHideRow('clvl2');
		} else if (strTabNm == 'GALLERY') {
			document.getElementById("CAP6").innerHTML = '<img src="images/gallery_caption.jpg" width="274" height="69" border="0" name="g_cap">';
			showHideRow('glvl2');
		}
		
		loadTopicImage(strTabNm);
	}		
//-->
