Done, but with errors on page

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;
 
S

Steve Easton

Are you saying the FrontPage is automatically
adding this script to your pages??
 
S

Stefan B Rusynko

TBMK that script is added by Norton Internet Security to all html pages viewed in browsers

--




| 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;
|
|
 
M

Mike

OK, I do have Norton Internet Security. What the heck is "TBMK" (I hate
abbreviations!).
 
S

Stefan B Rusynko

To Best My Knowledge

--




| OK, I do have Norton Internet Security. What the heck is "TBMK" (I hate
| abbreviations!).
|
| | > TBMK that script is added by Norton Internet Security to all html pages
| viewed in browsers
| >
| | > | 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"??
|
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top