I'm self taught and this is probably a basic question. Trying to use two popup windows in one webpage. First popup used opens correctly, but second one opens as full page. In the following script on the main page:
<SCRIPT TYPE="text/javascript">
<!--
function popupnr(mylink, windowname, refocus)
{
var mywin, href;
if (typeof(mylink) == 'string')
href=mylink;
else
href=mylink.href;
mywin = window.open('', windowname, 'width=400,height=400,resizable=yes,scrollbars=yes');
// if we just opened the window
if (
mywin.closed ||
(! mywin.document.URL) ||
(mywin.document.URL.indexOf("about") == 0)
)
mywin.location=href;
else if (refocus)
mywin.focus();
return false;
}
//-->
</SCRIPT>
I think I've figured out that I have to use one instance of this for each popup with each specific popup name being inserted for windowname .
The windowname then comes from the link line:
<A
HREF="provided_image.htm"
onclick="return popupnr(this, 'windowname')">Your Image</A> Ready?
Is this correct?