Okay,here's what Ive got on the main webpage:
<SCRIPT TYPE="text/javascript">
function popupnr(mylink, orderprocess, refocus)
{
var mywin, href;
if (typeof(mylink) == 'string')
href=mylink;
else
href=mylink.href;
mywin = window.open('', orderprocess, 'width=600,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>
<SCRIPT TYPE="text/javascript">
function popupnr(mylink, providedimage, refocus)
{
var mywin, href;
if (typeof(mylink) == 'string')
href=mylink;
else
href=mylink.href;
mywin = window.open('', providedimage, '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>
Then at each link location:
What is the <a href="order_process.htm" onclick="return popupnr(this, 'orderprocess')">Order Process</a> ? and
<a href="provided_image.htm" onclick="return popupnr(this, 'providedimage')">You provide</a
Each line is at separate location.
In the <body> section of the popup pages is:
<SCRIPT TYPE="text/javascript">
function targetopener(mylink, closeme, closeonly)
{
if (! (window.focus && window.opener))return true;
window.opener.focus();
if (! closeonly)window.opener.location.href=mylink.href;
if (closeme)window.close();
return false;
}
//
</SCRIPT>
somewhere in this, ther's something causing this problem.