//Author: M.Ranji@cheaperdomain.net //Original: 2001 //Last Update: 2004 //Do not copy! If you need a copy contact me, I will help you to write one for your own. var firstcolor,firstbordercolor; function whichItem(){ var e = event.srcElement while (e.tagName != "TD") e = e.parentElement return e } function flyer_over(){ var e = whichItem() firstcolor=e.style.backgroundColor firstbordercolor=e.style.borderColor //e.style.borderBottomColor="#313063" //e.style.borderBottomWidth="1px" //e.style.borderColor="#313063" e.style.borderColor="navy" e.style.BORDER="1px" e.style.backgroundColor = "#E5E5E5" } function flyer_out(){ var e = whichItem() e.style.borderColor=firstbordercolor e.style.BORDER="0px" e.style.backgroundColor = firstcolor } function flyer_click(){ var e = whichItem() e.style.backgroundColor = "#999999" } function flyer_up(){ //flyer_over() var e = whichItem() e.style.borderColor="navy" e.style.BORDER="1px" e.style.backgroundColor = "#E5E5E5" }