hecate8176
08-17-2003, 01:33 PM
First off I'd like to say I'm a beginner, bare with me pls.
This is the site I'm learning/building/creating on.
http://www.geocities.com/hecate8176/finalindex.html
The Photos page is giving me trouble. What I am trying to accomplish is a page with thumbnails that when you click on it (a thumbnail), it opens a pop-up to the larger version. My trouble is that the pop-up is ALWAYS the last picture I coded no matter what thumbnail you click on. Im getting extremely fustrated. Here is the code:
<SCRIPT LANGUAGE="JavaScript">
function popjack()
{
window.open('abc.html','popjack','toolbar=no,location=no,directories=no,status=no,menubar=no,resizab le=yes,copyhistory=no,scrollbars=no,width=700,height=700');
}
</script>
<a href="javascript: popjack()" onMouseOver="window.status='Status Bar Message'; return true" onMouseOut="window.status="; return true">
<IMG SRC="images/tnlizbabe1.jpg" WIDTH="50" HEIGHT="56" ALT="click to see larger picture" border="0"></a>
<SCRIPT LANGUAGE="JavaScript">
function popjack()
{
window.open('fire.html','popjack','toolbar=no,location=no,directories=no,status=no,menubar=no,resiza ble=yes,copyhistory=no,scrollbars=no,width=350,height=550');
}
</script>
<a href="javascript: popjack()" onMouseOver="window.status='Status Bar Message'; return true" onMouseOut="window.status="; return true">
<IMG SRC="images/tnfire.jpg" WIDTH="50" HEIGHT="51" ALT="click to see larger picture" border="0"></a>
This is the site I'm learning/building/creating on.
http://www.geocities.com/hecate8176/finalindex.html
The Photos page is giving me trouble. What I am trying to accomplish is a page with thumbnails that when you click on it (a thumbnail), it opens a pop-up to the larger version. My trouble is that the pop-up is ALWAYS the last picture I coded no matter what thumbnail you click on. Im getting extremely fustrated. Here is the code:
<SCRIPT LANGUAGE="JavaScript">
function popjack()
{
window.open('abc.html','popjack','toolbar=no,location=no,directories=no,status=no,menubar=no,resizab le=yes,copyhistory=no,scrollbars=no,width=700,height=700');
}
</script>
<a href="javascript: popjack()" onMouseOver="window.status='Status Bar Message'; return true" onMouseOut="window.status="; return true">
<IMG SRC="images/tnlizbabe1.jpg" WIDTH="50" HEIGHT="56" ALT="click to see larger picture" border="0"></a>
<SCRIPT LANGUAGE="JavaScript">
function popjack()
{
window.open('fire.html','popjack','toolbar=no,location=no,directories=no,status=no,menubar=no,resiza ble=yes,copyhistory=no,scrollbars=no,width=350,height=550');
}
</script>
<a href="javascript: popjack()" onMouseOver="window.status='Status Bar Message'; return true" onMouseOut="window.status="; return true">
<IMG SRC="images/tnfire.jpg" WIDTH="50" HEIGHT="51" ALT="click to see larger picture" border="0"></a>