jimmythegeek
Programmer
I have the following script on a Photo Gallery Page:
==========
<SCRIPT LANGUAGE="JavaScript">
function popupPage(pic, w, h)
{
var windowprops = "location=no, scrollbars=no, menubars=no, toolbars=no, resizable=no" + ",left=300, top=90" + ", width=" + w + ", height=" + h;
popup = window.open(pic,"MenuPopup",windowprops);
}
</SCRIPT>
==========
Then I use the following in the Body:
==========
<A onClick="popupPage('images/stage.jpg','320','250')"><IMG BORDER="0" SRC="images/tnstage.jpg" width="75" height="56"></a>
==========
This works wonderfully in IE, but does not work in Netscape. Any suggestions?
Thanks in advance
Jim Lunde
compugeeks@hotmail.com
Custom Application Development
==========
<SCRIPT LANGUAGE="JavaScript">
function popupPage(pic, w, h)
{
var windowprops = "location=no, scrollbars=no, menubars=no, toolbars=no, resizable=no" + ",left=300, top=90" + ", width=" + w + ", height=" + h;
popup = window.open(pic,"MenuPopup",windowprops);
}
</SCRIPT>
==========
Then I use the following in the Body:
==========
<A onClick="popupPage('images/stage.jpg','320','250')"><IMG BORDER="0" SRC="images/tnstage.jpg" width="75" height="56"></a>
==========
This works wonderfully in IE, but does not work in Netscape. Any suggestions?
Thanks in advance
Jim Lunde
compugeeks@hotmail.com
Custom Application Development