function skapaMenyYta() {
  if(!NiftyCheck()) return;
  RoundedBottom("div.logga","#FEFFFD","#0b5da7");
  Rounded("div.meny","#FEFFFD","#0b5da7");
  RoundedTop("div.menytom","#FEFFFD","#0b5da7");
}
function findPosY(obj) {
  var curtop = 0;
  if(obj.offsetParent)
      while(1)
      {
        curtop += obj.offsetTop;
        if(!obj.offsetParent)
          break;
        obj = obj.offsetParent;
      }
  else if(obj.y)
      curtop += obj.y;
  return curtop;
}
function findPageHeight() {
  var winWidth, winHeight, d=document;
  if (typeof window.innerWidth!='undefined') {
  winWidth = window.innerWidth;
  winHeight = window.innerHeight;
  } else if ( d.documentElement
  && typeof d.documentElement.clientWidth!='undefined'
  && d.documentElement.clientWidth!=0 ) {
  winWidth = d.documentElement.clientWidth;
  winHeight = d.documentElement.clientHeight;
  } else if ( d.body
  && typeof d.body.clientWidth!='undefined') {
  winWidth = d.body.clientWidth;
  winHeight = d.body.clientHeight;
  }
  alert('winWidth: ' + winWidth
  + '\nwinHeight: ' + winHeight);
}

