like i said define each one of the functions in the javascript as you did for the one pop up..giving each seperate pic a different fucntion name..placing them all in the same html code as you did for the one that you got to work..something like this:
<SCRIPT LANGUAGE="JavaScript">
<!--
function
pic1()
{
window.open("
yourfolder/yourpic.jpg","_blank","directories=0,menubar=0,scrollbars=1,toolbars=0,location=0,width=700,height=400,left=15,top=15"

;
}
function
pic2()
{
window.open("
yourfolder/yourpic2.jpg","_blank","directories=0,menubar=0,scrollbars=1,toolbars=0,location=0,width=750,height=500,left=100,top=100"

;
}
function
pic3()
{
window.open("
yourfolder/yourpic3.jpg","_blank","directories=0,menubar=0,scrollbars=1,toolbars=0,location=0,width=750,height=500,left=15,top=15"

;
}
//-->
</SCRIPT>
and so on..make sure you adjust the size of the windows to the size of the pics..
each one of you buttons would hold the actions:
on (press) {
getURL ("javascript

ic1()"

;
}
and so on for each button...
carlsatterwhite@orlandomediasolutions.com