
function openit(h){
  var wHeight = 300;
  var wWidth = 500;

  if ((document.getElementsByTagName) && NS6){
    wWidth = window.innerWidth;
    wHeight = window.innerHeight;
    }
		else if ((document.getElementsByTagName) && IE5){
    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 = "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) {
      newwin = eval (openstr);
						newwin.focus ();
	  }
	else {
	  newwin = window.open (h, "hwin", "width=500,height=300,resizable=1,status=1,location=1,toolbar=1,scrollbars=1");
	  } 
	}
}
