fotten20
07-25-2003, 09:08 AM
I have a Thumbnail indexpage (picturesite). when clicking a thumbnail, a new browserwindow is poping up.
done by the folowing script:
<script language="JavaScript" type="text/javascript"><!--
var winhandle = null;
function popUp(URL) {
if ((winhandle != null) && (! winhandle.closed)){
winhandle.location.replace(URL);
}
else
{
winhandle=window.open(URL, 'imagewin', 'width=800,height=600,resizable,scrollbars');
}
winhandle.focus();
}
//--></script>
and:
<a href="javascript:popUp('pic1.html')">
The problem i have is: when i click a thumbnail and the the page is not already loaded completely, the loading of the rest of the thumbnails stops.
does anybody know what to do ? ?
done by the folowing script:
<script language="JavaScript" type="text/javascript"><!--
var winhandle = null;
function popUp(URL) {
if ((winhandle != null) && (! winhandle.closed)){
winhandle.location.replace(URL);
}
else
{
winhandle=window.open(URL, 'imagewin', 'width=800,height=600,resizable,scrollbars');
}
winhandle.focus();
}
//--></script>
and:
<a href="javascript:popUp('pic1.html')">
The problem i have is: when i click a thumbnail and the the page is not already loaded completely, the loading of the rest of the thumbnails stops.
does anybody know what to do ? ?