function dummy() {}

document.write = dummy;
document.writeln = dummy;

function clearTimers()
{
  var timer = setInterval("dummy()", 60000);
  for (var i = timer - 100; i < timer + 100; i++) clearInterval(i);
}

function popupLycosAd()
{
  parent.document.body.cols = "100%,*";
  window.open(ad_url, "LycosAdPopup", "left=850,top=20,width=150,height=680");
}

function onLoad(event)
{
  event = event || window.event || null;
  clearTimers();
  if (self.setTimers) setTimers();
  popupLycosAd();
}

window.onload = onLoad;

