M
Mike
Why is it that Frontpage sticks in the following code on the fly when the
page is displayed, and as a result I get a "Done, but with errors on page"
in IE's status bar. The error is "SymRealWinOpen is undefined"??
What do I need to do to fix this?
Here's the code...
function SymError()
{
return true;
}
window.onerror = SymError;
var SymRealWinOpen = window.open;
function SymWinOpen(url, name, attributes)
{
return (new Object());
}
window.open = SymWinOpen;
page is displayed, and as a result I get a "Done, but with errors on page"
in IE's status bar. The error is "SymRealWinOpen is undefined"??
What do I need to do to fix this?
Here's the code...
function SymError()
{
return true;
}
window.onerror = SymError;
var SymRealWinOpen = window.open;
function SymWinOpen(url, name, attributes)
{
return (new Object());
}
window.open = SymWinOpen;