As you may know you have to escape all the html code that you put in the status bar, or content, as it's called. Well here's an easy trick to ease that particular headache.

This is PHP btw.


<?
$caption = &#039;
<table border="0">
<tr>
<td width="100">Blah blah blah my grandmother is an armadillo.</td>
<td>
<a href="http://www.mysite.com/someplace/images.php?group=mygroup&bank=images" target="_blank">
<img src="http://www.mysite.com/someplace/gfx/go_to_gallery.jpg" border="0">
</a>
</td></tr>
</table>

&#039;;

?>


and then simply add


caption:`<? echo htmlentities($caption); ?>`"


And it's all formatted for you. Easy peasy.

Good luck! 8)