The first link in your two link combo has no trigger text or image to click on, and it would be better to use just one link. There are better ways to do rollovers, but if you like DW's MM system, or just want to use it because you are familiar with it, this should work:
Code:
<a href="javascript:ajaxpage('ajaxfiles/external.htm', 'rightcolumn');"
onmouseout="MM_swapImgRestore();"
onmouseover="MM_swapImage('Image1','','/images/buttons/about_over.gif',1);"
><img src="/images/buttons/about_up.gif" name="Image1"
width="53" height="28" border="0" id="Image1" alt=""></a>
In an unrelated matter, using (as the demo page instructs) a javascript: href without an onclick event can be problematic, so it would be better to:
Code:
<a href="ajaxfiles/external.htm"
onclick="ajaxpage(this.href, 'rightcolumn'); return false;"
onmouseout="MM_swapImgRestore();"
onmouseover="MM_swapImage('Image1','','/images/buttons/about_over.gif',1);"
><img src="/images/buttons/about_up.gif" name="Image1"
width="53" height="28" border="0" id="Image1" alt=""></a>
Bookmarks