If i understood you good, you want to open a pop-up window.
you can make it via javascript.
add this code to some .js file (ex. js.js):
Quote:
function PopUp(file, width, height) {
PopUpWindow = open(file, "PopUpWindow", "top="+(screen.availWidth-width)/2+",left="+(screen.availHeight-height)/2+",width="+width+",height="+height+",resizible=no ,status=no,toolbar=no,menubar=no,scrollbars=yes");
PopUpWindow.focus( )
}
|
and add this to the head section of your html file:
Quote:
<script src="/js.js" type="text/javascript"></script>
|
with this, you will include the javascript file to the html file.
now,
when u will add links, the links will look like this:
<a href="PopUp(file, width, height)">
where file is the html file with big picture (u need to make different files for all pictures),
width & height are the width and the heigh of the pop-up window
|