/**************************************************/
/**** Global JavaScrip file for kneeriders.com ****/
/**************************************************/


/* Back one location in the history obj */
	function goBack()	{ 
				history.back()
	}

/* Popup window */
	function popupWindow (htmFile) 	{
  			msgWindow = window.open(htmFile, "PopupWindow", "toolbar=no,width=350,height=320,status=no,scrollbars=yes,resizable=yes,menubar=no,location=no");
	}

/* Change BG Color */
	function changeColor(code) { 
       document.bgColor=code
	}

/* SLIDESHOW */

/* Slide Show window */
	function slideShow (htmFile) 	{
  			msgWindow = window.open(htmFile, "SlideShow", "toolbar=no,width=450,height=450,status=no,scrollbars=yes,resizable=yes,menubar=no,location=no");
	}
	
/* Slide Show - bikes */

	bikes = new Array(
		"PATH", // [description] 
		"PATH" // last - no comma [description] 
	)
	
	thisPic = 0
	imgCt = slideShow.length - 1
	
	function chgBan(direction) {
		if (document.images) {
			thisPic = thisPic + direction
			
			if (thisPic > imgCt) {
				thisPic = 0		
			}
			
			if (thisPic < 0) {
				thisPic = imgCt
			}
			
			document.myBanner.src=slideShow[thisPic]
		}
	}
	
	
/* Current Day/Date */

	<script language="JavaScript" type="text/JavaScript">
		<!-- 
		dayName = new Array ("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday")
		
		monName = new Array ("January", "February", "March", "April", "May", "June", "July", "August", "September", 
								"October", "November", "December")
		
		now = new Date
		// -->
	</script>

	
	
	
