var TID ; function outset(elmnt) { clearTimeout(TID); elmnt.style.border="outset 2" elmnt.style.background="EEEEEE" elmnt.style.color="000000" elmnt.style.cursor = "default" var myid= elmnt.id; TID = setTimeout( "hsubmenu.style.display = 'none'",1000); } function inset(elmnt) { clearTimeout(TID); elmnt.style.border="inset 2" elmnt.style.background="FFEEEE" elmnt.style.color="FF0000" elmnt.style.cursor = "hand" hsubmenu.style.display = 'block'; var myID= elmnt.id; var myLeft = eval ("document.all."+myID+".offsetLeft") +400 ; var myTop = eval ("document.all."+myID+".offsetTop") +110; document.all.hsubmenu.style.left = myLeft +"px"; document.all.hsubmenu.style.top = myTop +"px"; } function soutset(elmnt) { clearTimeout(TID); elmnt.style.border="outset 2" elmnt.style.background="EEEEEE" elmnt.style.color="000000" elmnt.style.cursor = "default" TID = setTimeout( "hsubmenu.style.display = 'none'",1000); } function sinset(elmnt) { elmnt.style.border="inset 2" elmnt.style.background="FFEEEE" elmnt.style.color="FF0000" elmnt.style.cursor = "hand" clearTimeout(TID); }