// JavaScript Documentfunction opensite(newurl){	window.location.href = newurl}function writeMenu(comArray){var text = ""text = "<table>"text += "<tr>"	for (ii=0;ii<=comArray.length-1;ii++){		if (ii==0) {		text += "<td class='table0' onMouseOver=" + achr[1]+ "this.className ='table0hover'" + achr[1]		text += " onMouseOut=" + achr[1]+ "this.className ='table0'" + achr[1]+ "><span>" + comArray[ii] + "</span>&nbsp;</td>" 		}		else {			text += "<td class='table1' onMouseOver=" + achr[1]+ "this.className ='table1hover'" + achr[1]		text += " onMouseOut=" + achr[1]+ "this.className ='table1'" + achr[1]+ ">&nbsp;<span>" + comArray[ii] + "</span>&nbsp;</td>" 				}	}text += "</tr>"text += "</table>"menucontainer.innerHTML=text}function initMenu(){var text = "<table height='21' border='0' cellspacing='0' cellpadding='0'><tr><td><span id=menucontainer></span></td></tr></table>"document.write(text)}
