function MakeArray(n) {
   this.length = n
   for (var i = 1; i <= n; i++) {
      this[i] = 0
   }
   return this
}

mnuList = new MakeArray(9)
mnuList[1] = "http://www.ccpguam.com/"
mnuList[2] = "http://www.giccguam.com/"
mnuList[3] = "http://www.leopalaceresort.com/reserve/index.html"
mnuList[4] = "http://www.mangilaogolf.com/"
mnuList[5] = "http://www.starts.co.jp/guam/"
mnuList[6] = "http://www.onwardguam.com/"
mnuList[7] = "http://www.whccgolf.com/"
function go() {
	var selected = document.linkmenu.linklist.selectedIndex
	if(selected > 0) {
		location = mnuList[selected]
	}
}
