// 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 < 6; i++)
  {
    Icon[i] = new Image()
  }
  
     Icon[0].src = "http://online.hsmai.org/resortconference/2006/06images/off/05recap_off.gif"
  Icon[1].src = "http://online.hsmai.org/resortconference/2006/06images/on/05recap_on.gif"

  Icon[2].src = "http://online.hsmai.org/resortconference/2006/06images/off/06recap_off.gif"
  Icon[3].src = "http://online.hsmai.org/resortconference/2006/06images/on/06recap_on.gif"
  
     Icon[4].src = "http://online.hsmai.org/resortconference/2006/06images/off/contact_off.gif"
  Icon[5].src = "http://online.hsmai.org/resortconference/2006/06images/on/contact_on.gif"
 
}

function changeIcon(button, onOff) {
  if (isJava == "TRUE")
    eval("document." + button + ".src = Icon[onOff].src")
}

function newWindow(pics) {
	picWindow = window.open(pics, "picWin", "width=470, height=400, resizable=yes")
	picWindow.focus()
	}

// End of JavaScript -->