function doNothing(){
status="";
return true};
window.onerror=doNothing;


function Open(href,width,height,border){

  function WritetoWindow(){
    if(top.cat.document){
      top.cat.focus();
      top.cat.document.write('<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1251"><title></title></head><body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0" bgcolor="#ffffff"><table border="0" width="100%" height="100%" cellspacing="0" cellpadding="0"><tr><td align="center"><img src="');
      top.cat.document.write(''+href+'" width="'+width+'" height="'+height+'"></td></tr></table></body></html>');
    }
    return;
  }
  if (top.catIsOpen == true){
    if (top.cat.closed == false){
      top.cat.close()
    }
  }
  var wwidth=width+border*2;
  var wheight=height+border*2;
  top.cat=open('','cat','width='+wwidth+', height='+wheight+', top=0, left=0');
  top.catIsOpen = true;
  setTimeout(WritetoWindow,500);
 
return;
}
