Yes, the code for a pop-up window is JavaScript.? First you must create a page containing the image you want to link to.? Since you are making a photo gallery, you will use an image link.? First enter this code:
Quote:
<script language="javascript" type="text/javascript">
//<!--
function popup()
{ window.open ("YourURLgoesHere.html","popup","width=400,height= 400,location=0,menubar=0,resizable=0,scrollbars=0, status=0,titlebar=1,toolbar=0") }
-->
</script>
|
I normally put this near the top of the source code where I can find it easily, but that is just my preference.

? You should experiment with the width and height until you get the right size.
Once you have done that, enter this code where you want the link to be:
Quote:
|
<a href="javascript:popup()"><img src="001.gif" border=0 width="40" height="40" alt="put the image description here"></a>
|
Change "popup" to what you want in the title bar of your new window.
Hope this helps!? I'm a little tired tonight, so if it doesn't work correctly please tell me so I can fix it tomorrow (when I am sane again). [honesty]