Dunno if you've figured this out yourself, but this is one of the few things I can answer! WHEE!!
This goes up in the header section:
<SCRIPT LANGUAGE="JavaScript">
function myvoid()
{}
function CreateChild(CoverLocation)
{
window.open (CoverLocation, 'newWin', 'scrollbars=yes,status=yes,width=600,height=500,resizable=yes');
return false;
}
</SCRIPT>
And this is what your link to your new window should look like:
<a href="javascript:myvoid()" onClick="CreateChild('gallery/fullcircle.html');" onMouseOver=
"window.status='Full Circle'; return true"><img src="gallery/thumbnails/fc-tn.jpg"></a>
(I'm just copying/pasting from my website, so I hope it's legible...if not, I'll be happy to clarify)
I think that's all you need...
