// Ignore errors

function IgnoreError() {return true;}

window.onerror=IgnoreError;



// Framebuster

if (top.location!=location) {top.location.href=location.href;} 



// Function to open new windows

function rs(n,u,w,h) {

  var remote = null;

  remote = window.open(u, n, 'width=' + w + ',height=' + h +',toolbar=no,titlebar=no,menubar=no,resizable=no,scrollbars=yes');

  if (remote != null) {

    if (remote.opener == null)

      remote.opener = self;

    window.name = 'catpop';

    remote.location.href = u;

  }

  window.focus();

}

