What is it?

  • Thread starter Thread starter Fred
  • Start date Start date
F

Fred

Can someone explain to me in simple terms what this html code is all about and what is its function.


<html>

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

Thanks.

Fred
 
Can someone explain to me in simple terms what this html code is all about and what is its function.


<html>

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

Thanks.

Fred


Looks like it opens a pop-up window - where did the code come from if you didn't write it, or cut & paste from some other source? It is code generated by Frontpage Add-ins or Plug-ins??
 
Back
Top