It only seems to happen after I've chosen to allow popups and view one. So, I think it may have something to do with the:
Code:
popup('steadman.htm','mepop','Click here to view a larger image.',popx,popy,'no','yes');
function. If written properly, the popup shouldn't require permission. This may or may not have anything to do with your problem. I'm not sure if I've followed your quoting scheme properly but, if so, you may have better luck with this version:
Code:
//POPUP
function popup(url,name,txt,width,height, menu, resize){
var murl='\"'+url+'\"';
var mname='\"'+name+'\"';
var mdim='\"toolbar='+menu+', scrollbars='+menu+', location='+menu+', status='+menu+', menubar='+menu+', resizable='+resize+', height='+height+',width='+width+'\"';
var p="<a href=\'"+url+"\' onclick=\'"+name+"=window.open(this.href,"+mname+","+mdim+"); "+name+".focus(); "+name+".resizeTo("+width+","+height+");return false;\'>"+txt+"</a>";
return p;
}
Bookmarks