<!--

function SymError()
{
  return true;
}

//this is a super simple snippet of code to prevent the browser from flashing an unrendered page before loading the CSS
//I would attribute it to someone but everyone claims it as their own. I snagged this from the zen garden's page.

window.onerror = SymError;

var SymRealWinOpen = window.open;

function SymWinOpen(url, name, attributes)
{
  return (new Object());
}

window.open = SymWinOpen;

//-->