// 2002.03.26 - Mark Rovendro
// Copyright Mark Rovendro
// File: functions.js


function lastUpdated() {
  // Netscape 4.7 lastModified is in the format "Friday, December 01, 2000 00:35:05
  // IE 5.0 lastModified is in the format "12/01/2000 00:35:05"
  if ( navigator.appName == "Netscape" )
      document.writeln( 'Last updated ' + document.lastModified.substring(0,document.lastModified.length-9) ) ;
  else
      document.writeln( 'Last updated ' + document.lastModified.substring(0,10) ) ;
} //lastUpdated 


// main image rollover
//var menuImg = new Array() ;
//menuImg[1] = new Image() ;
//menuImg[1].src = "images/btwbd2001-5.jpg" ;
//menuImg[2] = new Image() ;
//menuImg[2].src = "images/btwbd2001-4.jpg" ;
function loadImage(name,index) {
  if ( document.images && name != "" ) {
    document.images[name].src = menuImg[index].src ;
  }
  if ( arguments.length == 3 ) {
    window.status = arguments[2] ;
  } else {
    window.status = '' ;
  }
  return true ;  // THIS IS REQUIRED FOR THE WINDOW.STATUS CHANGE TO OCCUR
} //loadImage


var showWin = "" ;	// Handler to Midi window
function openSlideShowWindow(page) {
  if ( showWin != "" && showWin.closed == 0 ) {
    showWin.focus() ;
  } else {
    showWin = window.open(page,"slideshow","toolbar=no,scrollbars=no,height=445,width=580,resizable=no")
  }
} //openSlideShowWindow
	

// End: functions.js
