Nice tip. However, can you make the code xtml valid if you don''t mind me interfering:
Simply replace:
HTML Code:
<div align="center"><img src="http://img87.imageshack.us/img87/6431/workings.gif"> </div><br>
with:
HTML Code:
<div style="text-align: center;"><img src="http://img87.imageshack.us/img87/6431/workings.gif" alt = ""> </div><br />
As the align center has been depricated in div and it is better to use the style tag. Also the br tag misses the closing slash and the img tag misses the required alt attribute.