i'm using this popup code, opens a popup window that holds a portfolio - i'm using this same code in the portfolio window - the code won't work in the child window. any ideas how to get it to work?
thanks
PHP Code:
<SCRIPT LANGUAGE="JavaScript">
<!--
function windowOpen(image,width,height)
{
myWindow = window.open("","popWin","width=" + width + ",height=" +
height+",top=0,left=0,left=0,top=0,toolbar=No,menubar=No,location=No,scrollbars=No,resizable=No
,status=No,");
myWindow.location.href = image;
if (!myWindow.opener) myWindow.opener = self;
}
//-->
</SCRIPT>