Forum Moderators: open
<script language="javascript">
<!--
function openMywindow(){
open("images/school%20proof.JPG","PageName","scrollbars=0, width=492,height=305, top=5, left=5, title=School Proof").focus();
this in the body
<a href="javascript:openMywindow()"><font size="-2">Click TO Enlarge</font><img src="images/school%20proof.JPG" width="300" hspace="20" vspace="20" align="left"></a>
Regards Ian
I put the images in table cells to make them more readable. Just repeat everything between the <tr> and </tr> cell for each image (you may want 2-3 in each row, but you can modify that later). Modify the image file name in 2 places, and the image title once:
<!-- this in the body -->
<table>
<tr>
<td>
<a href="javascript:openMywindow('school%20proof.JPG','School Proof 1')">
<font size="-2">Click To Enlarge</font>
<br>
<img src="images/school%20proof.JPG" width="300" hspace="20" vspace="20" align="left"></a>
</td>
</tr>
<tr>
<td>
<a href="javascript:openMywindow('school%20proof2.JPG','School Proof 2')">
<font size="-2">Click To Enlarge</font>
<br>
<img src="images/school%20proof2.JPG" width="300" hspace="20" vspace="20" align="left"></a>
</td>
</tr>
</table>