// JavaScript Document
<!--
// Begin icon-changing stuff
var isJava = "FALSE"

  if (parseInt(navigator.appVersion.charAt(0)) >= 3)
  {
    isJava = "TRUE"
  }

if (isJava == "TRUE")
{
  Icon = new Array()
  for (i = 0; i < 10; i++)
  {
    Icon[i] = new Image()
  }
  
     Icon[0].src = "http://online.hsmai.org/resortconference/2007/07images/off/agenda_off.gif"
  Icon[1].src = "http://online.hsmai.org/resortconference/2007/07images/on/agenda_on.gif"

  Icon[2].src = "http://online.hsmai.org/resortconference/2007/07images/off/reg_off.gif"
  Icon[3].src = "http://online.hsmai.org/resortconference/2007/07images/on/reg_on.gif"
  
    Icon[4].src = "http://online.hsmai.org/resortconference/2007/07images/off/spon_off.gif"
  Icon[5].src = "http://online.hsmai.org/resortconference/2007/07images/on/spon_on.gif"
  
     Icon[6].src = "http://online.hsmai.org/resortconference/2007/07images/off/hotel_off.gif"
  Icon[7].src = "http://online.hsmai.org/resortconference/2007/07images/on/hotel_on.gif"
  
     Icon[8].src = "http://online.hsmai.org/resortconference/2007/07images/off/contact_off.gif"
  Icon[9].src = "http://online.hsmai.org/resortconference/2007/07images/on/contact_on.gif"
 
}

function changeIcon(button, onOff) {
  if (isJava == "TRUE")
    eval("document." + button + ".src = Icon[onOff].src")
}

// End of JavaScript -->
