SymError and SymWinOpen

wxdqz

New Member
I noticed that the script below exists on one of my pages when viewing the source code via the browser.

Since I did not add this script myself, I would guess that it is being generated (from the server?).

Can anyone provide me with the reason why (and how) this script would become part of the page?

Thanks.
T


<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>
 
Back
Top