// JavaScript Document
function setHeight(){
	if(document.all || document.getElementById){
		temp = getINNERHEIGHT();
		temp = temp - 108;
		if(document.all){
			document.all("scroll").style.height = temp + "px";
		}else if(document.getElementById){
			document.getElementById("scroll").style.height = temp + "px";
		}
	}
}

function getINNERHEIGHT(){
  if(window.opera)
    return window.innerHeight         //o6,o7—p
  else if(document.all)
    return document.body.clientHeight //e4,e5,e6—p
  else if(document.layers)
    return  window.innerHeight        //n4—p
  else if(document.getElementById)
    return window.innerHeight         //n6,n7,m1,s1—p
  return null
}




