Forum Moderators: open
As this code stands, there is an image button (using frontpage 2003) that has the name 'Case 1' on it and it opens a new window html page - perfect but, I need it to open a new window with no location bar or menu bar or anything, just a plain window which is resizable. I have gone through the forums and used the code snippets, but I just can't seem to get it right. If some one could please help me on this, thank you in advance.
Here is the code below:
<tr>
<td valign="top">
<!-- MSCellType="NavBody" -->
</td>
<td> </td>
<td valign="top" colspan="2" height="302">
<!-- MSCellType="ContentBody" -->
<a href="case_1/case_1.html" target="_blank">
<img border="0" id="img1" src="images/button19.jpg" height="20" width="100" alt="Case1"
onmouseover="FP_swapImg(1,0,/*id*/'img1',/*url*/'images/button1A.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img1',/*url*/'images/button19.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img1',/*url*/'images/button1B.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img1',/*url*/'images/button1A.jpg')"
fp-style="fp-btn: Embossed Capsule 2"
fp-title="Case 1">
</a>
<font face="Verdana" size="2">
Mr. Kevin trying to get rehousing</font></td>
</tr>
<a href="case_1/case_1.html" target="_blank">
to be:
<a href="case_1/case_1.html" target="_blank" onclick="window.open('case_1/case_1.html','','status=no');return false;">
you will get, at least, close to what you want. Keeping the existing markup and just adding to it will accommodate browers with JavaScript turned off.