
function showDate()  // display date in currDate box
  {
  var currDate  = new Date()
  var currDay   = currDate.getDate()
  var currMonth = currDate.getMonth() + 1
  var currYear  = currDate.getYear()
  currDateStr   = currDay + "/" + currMonth + "/" + currYear
  document.headerForm.currDate.value = currDateStr
  }
function showTime()  // display time in currTime box
  {
  var currDate    = new Date()
  var currHours   = currDate.getHours()
  var currMinutes = currDate.getMinutes()
  var currSeconds = currDate.getSeconds()
  var currTime    = "" + currHours
  currTime += ((currMinutes < 10) ? ":0" : ":") + currMinutes
  currTime += ((currSeconds < 10) ? ":0" : ":") + currSeconds
  document.headerForm.currTime.value = currTime 
  setTimeout("showTime()", 1000)
  }
	
myPix = new Array // slide show
 ("awhtml_site/slideshow/slide01.gif",
	"awhtml_site/slideshow/slide02.gif",
	"awhtml_site/slideshow/slide03.gif",
	"awhtml_site/slideshow/slide04.gif",
	"awhtml_site/slideshow/slide05.gif",
	"awhtml_site/slideshow/slide06.gif",
	"awhtml_site/slideshow/slide07.gif",
	"awhtml_site/slideshow/slide08.gif",
	"awhtml_site/slideshow/slide09.gif",
	"awhtml_site/slideshow/slide10.gif")
	thisPic = 0
	imgCt = myPix.length - 1

	function chgSlide(direction) {
		if (document.images) {
			thisPic = thisPic + direction
			if (thisPic > imgCt) {
				thisPic = 0
			}
			if (thisPic < 0) {
				thisPic = imgCt
			}
			document.myPicture.src=myPix[thisPic]
		}
	}

