|
For whatever stupid reason, my server insists on forcing the following JavaScript into my pages whenever they are accessed:
<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>
I can check this on the server with my FTP program, and the above script is not there. It is only when a file is accessed that the script is forced into my pages. This interferes with other JavaScripts that I try to run. So, how do I:
1. Keep the above script out
or
2. Run multiple JavaScripts on the same page so that the aforementioned script does not cause other scripts to fail.
Thanks.
|