

var i,j, okno_width = 640, okno_height = 480;
var microsoft = (document.all) ? 1 : 0;
var netscape = !microsoft;
var pict99;
var defres; 


function GetScreenNS()
  {
  okno_width = self.innerWidth;
  okno_height = self.innerHeight;
  if (okno_width>0) defres = 1;
  }

function GetScreenMSIE()
  {
  okno_width = document.body.clientWidth;
  okno_height = document.body.clientHeight;
  if (okno_width>0) defres = 1;
  }



function GetScreen()
  {
  defres = 0;
  GetScreenNS();
  if (defres==0) GetScreenMSIE()
  }


GetScreen();

if (okno_width>801)
   {
   document.write ("<P>&nbsp;<P>&nbsp;<P>");
   }
