I hope someone out there can help me...
I am building a website (not published yet) and have one particular page that has got several graphics in a table (I use FP2002) and I am trying to code the javascript to open each one when they are clicked on individually - with the following script:
<script>
//Popup Window Script
//By JavaScript Kit (
http://javascriptkit.com)
//JavaScript tutorials and over 400+ free scripts
function openpopup(){
var popurl="o-d-penny-copper.htm"
winpops=window.open(popurl,"","width=340,height=200,resizable,")
}
</script>
The first pop-up works fine, but is the same graphic on all five, no matter which one is clicked on. When I add a semicolon and another url or anything to the "var popurl line" then nothing works. I get "The page cannot be displayed".
What am I doing wrong? Please help.