This part:
Code:
<table width="175px"><td><p align="right">
<a href="#" onMouseover="moveup()" onMouseout="clearTimeout(moveupvar)"><img src="up.gif" border=0></a> <a href="#" onMouseover="movedown()" onMouseout="clearTimeout(movedownvar)"><img src="down.gif" border=0></a></p></td>
</table>
Is ordinary HTML, you may alter it however you like as long as the events are preserved, example:
Code:
<table width="175px"><td>
<div style="float:right;text-align:center;margin-left:1em;font-size:68%;font-family:sans-serif;cursor:pointer;"
onmouseover="movedown();" onmouseout="clearTimeout(movedownvar);"><img src="down.gif" border=0><br>Move Down
</div><div style="float:right;text-align:center;font-size:68%;font-family:sans-serif;cursor:pointer;"
onmouseover="moveup();" onmouseout="clearTimeout(moveupvar);"><img src="up.gif" border=0><br>Move Up
</div>
</td></table>
Bookmarks