All I get is a pop up with:
Actually, for those well versed in the neurosciences, the problem is even more complicated than this. For them, the question is how does free-will fit into a brain that seems almost completely deterministic?
I tested in IE 6 & 7, FF 3, Opera 9.52, and Safari 3 Win. There was one problem. In Opera, it actually allows a 1px high window, so I had to use the mouse to enlarge the pop up, you should use something like:
Code:
onclick="openWin('deeper_problem.htm','',600,100);return false;"
to prevent that. What browser and OS are you using?
Just to be on the safe side, your openWin function should be changed to:
Code:
function openWin(url,name,wid,hgt) {
var sw=(screen.width-wid)/2;
var sh=(screen.height-hgt)/2;
var newwin=window.open(url,name,'width='+wid+',height='+hgt+',top='+sh+'+sh+',left='+sw+',scrollbars=0,menubars=0,toolbars=0,directories=0,location=0,address=0');
newwin.focus();
}
And get rid of this:
Code:
<script language="JavaScript">
<!--
function SymError()
{
return true;
}
window.onerror = SymError;
var SymRealWinOpen = window.open;
function SymWinOpen(url, name, attributes)
{
return (new Object());
}
window.open = SymWinOpen;
//-->
</script>
And get rid of this:
Code:
<script language="JavaScript">
<!--
var SymRealOnLoad;
var SymRealOnUnload;
function SymOnUnload()
{
window.open = SymWinOpen;
if(SymRealOnUnload != null)
SymRealOnUnload();
}
function SymOnLoad()
{
if(SymRealOnLoad != null)
SymRealOnLoad();
window.open = SymRealWinOpen;
SymRealOnUnload = window.onunload;
window.onunload = SymOnUnload;
}
SymRealOnLoad = window.onload;
window.onload = SymOnLoad;
//-->
</script>
Oh, and one more bit, change this:
Code:
<script language="javascript" type="text/javascript" src="openwin.txt"></script>
to:
Code:
<script type="text/javascript" src="openwin.js"></script>
and rename the file openwin.txt to openwin.js
Bookmarks