var mybrowser, mywidth, myheight;

mywidth = screen.width;
myheight = screen.height;

if (document.all)
  mybrowser = "ie";
else {
  if (document.documentElement)
    mybrowser = "w3c";
  else
    mybrowser = "n";
}


function set_body_old(mygrafik) {
  if (mygrafik == "") {
    if (myheight > 600)
      document.write("<body class='hires'>");
    else
      document.write("<body class='lores'>");
  } else {
    if (myheight > 600)
      document.write("<body class='hires' style='background-image:url(img/" + mygrafik + ")' >");
    else
      document.write("<body class='lores' style='background-image:url(img/" + mygrafik + ")' >");
  }
}

function set_body(mybody,mystyle) {
    document.write("<body class='" + mybody + "' " + mystyle + ">");
}