function setBackground()
 {var height=0;var width=0;
if (self.screen) {     // for NN4 and IE4
        width = screen.width
        height = screen.height}
else
    if (self.java) {   // for NN3 with enabled Java
       var jkit = java.awt.Toolkit.getDefaultToolkit();
       var scrsize = jkit.getScreenSize();
       width = scrsize.width;
       height = scrsize.height; }

if (width==1024)
{
  document.getElementById("capleft").style.backgroundPosition = "96px 0px";
  document.getElementById("header").style.backgroundPosition = "6px 0px";
   }
   if (width==1152)
{
  document.getElementById("capleft").style.backgroundPosition = "99px 0px";
  document.getElementById("header").style.backgroundPosition = "70px 0px";
   }
   if (width==1600)
{
  document.getElementById("capleft").style.backgroundPosition = "99px 0px";
  document.getElementById("header").style.backgroundPosition = "95px 0px";
   }
   if (width==1360)
{
  document.getElementById("capleft").style.backgroundPosition = "99px 0px";
  document.getElementById("header").style.backgroundPosition = "175px 0px";
   }


}

