ok so what i am doing is,
I have a bunch of images on a page and when i click on one of the images i want a menuless window to open up with the image bigger. But the tricky part is, I dont want to make an html doc for each image
so i want to have it take one htm file and just replace the image with the apropriate one

you can take a look at it here http://24.71.66.49
hear what i got so far Thanks a billion

<html>
<head>
<title>The Yew Tree 3D Portfolio</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script>
function showimage(img)
{ var newwin = window.open("", "image", "width=400,height=500,location=0,toolbar=0,... ")
window.document.write('<img src="images/'+img+'" border=0>');
window.document.close();
}
</script>

</head>



<body bgcolor="#000000" text="#FFFFFF" leftmargin="0" topmargin="0">
<table width="799" border="1" height="151">
<tr>
<td height="160" width="215"><a href="javascript:showimage('YEWG06 Large.jpg')"><img src="YEWG06 Small.jpg"></a></td>
<td height="160" width="183"><img src="YEWG08%20Small.jpg" width="200" height="300"></td>
<td height="160" width="198"><img src="YEWG09%20Small.jpg" width="200" height="363"></td>
<td height="160" width="185"><img src="YEWG11%20Small.jpg" width="200" height="218"></td>
<td height="160" width="185"><img src="YEWG12%20Small.jpg" width="200" height="299"></td>
<td height="160" width="185"><img src="YEWG13%20Small.jpg" width="200" height="288"></td>
<td height="160" width="185"><img src="YEWG14%20Small.jpg" width="200" height="296"></td>
<td height="160" width="185"><img src="YEWG15%20Small.jpg" width="200" height="330"></td>
<td height="160" width="185"><img src="YEWG16%20Small.jpg" width="200" height="206"></td>
<td height="160" width="185"><img src="YEWG17%20Small.jpg" width="200" height="200"></td>
<td height="160" width="185"><img src="YEWG18%20Small.jpg" width="200" height="208"></td>
<td height="160" width="185"><img src="YEWG19%20Small.jpg" width="200" height="191"></td>
<td height="160" width="185"><img src="YEWG20%20Small.jpg" width="200" height="199"></td>
<td height="160" width="185"><img src="YEWG21%20Small.jpg" width="200" height="188"></td>
<td height="160" width="185"><img src="YEWG22%20Small.jpg" width="200" height="239"></td>
<td height="160" width="185">&nbsp;</td>
<td height="160" width="185">&nbsp;</td>
<td height="160" width="185">&nbsp;</td>
</tr>
</table>
</body>
</html>