

domok=document.getElementById&&!document.all
ieok=document.all

function hideit(){
var temp=domok? document.getElementById("subselect").style : subselect.style
temp.visibility="hidden"
}

function highlight1(e){
if (ieok){
var source_el=domok? e.target : event.srcElement
if (source_el.id.charAt(0)=='m')
source_el.style.backgroundColor='yellow'
}
}

function highlight2(e){
if (ieok){
var source_el=domok? e.target: event.srcElement
if (source_el.id.charAt(0)=='m')
source_el.style.backgroundColor='lightyellow'
}
}

function warp(e){
var temp=domok? e.target.id : event.srcElement.id
if (temp.charAt(0)=='m')
window.location=itemlinks[temp.substring(1,temp.length)]
}

