
function openit(h){
  var wHeight = 300;
  var wWidth = 500;

  if (dom && !IE){
    wWidth = window.innerWidth;
    wHeight = window.innerHeight;
    }
  else if (IE){
    wWidth = top.document.getElementsByTagName("body").item(0).offsetWidth;
    wHeight = top.document.getElementsByTagName("body").item(0).offsetHeight; //need better measurement
    }
/*  else if (document.body) {	
    wWidth=top.document.body.clientWidth;
    wHeight= top.document.body.clientHeight;
    }
  else if (window.innerWidth) {
    wWidth = window.innerWidth;
    wHeight = window.innerHeight;
    }*/
	
  openstr = "var newwin = window.open (h, \"hwin\", \"width=" + (wWidth * .85) + ",height=" + (wHeight * 0.85) + ",resizable=1,status=1,location=1,toolbar=1,scrollbars=1\")";
  if (window.open){
    if (eval) {
      bla = eval (openstr);
      newwin.focus();
      }
    else {
      newwin = window.open (h, "hwin", "width=500,height=300,resizable=1,status=1,location=1,toolbar=1,scrollbars=1");
      newwin.focus();
      }
    }
  }