<PUBLIC:COMPONENT>
<PUBLIC:ATTACH EVENT="onmouseover" ONEVENT="attachUnder()">
<PUBLIC:ATTACH EVENT="onmouseout" ONEVENT="Restore()">
<SCRIPT LANGUAGE="JavaScript">
function attachUnder() {
element.style.textDecoration = "underline"
}
function Restore() {
element.style.textDecoration = "none"
}
</SCRIPT>
</PUBLIC:COMPONENT>