// JavaScript Document

function middheight(id_div,minus){

	var nav_name=navigator.appName;

	 if ((nav_name.search("Opera")!=-1)) {

	     var Height = document.documentElement.clientHeight;		

	    } else {

		 	    if ((nav_name.search("Netscape")!=-1)) {

				    var Height = document.documentElement.clientHeight;

				

			      } else {

				           var Height = document.documentElement.offsetHeight;

			             }

	  



	           }

	 document.getElementById(id_div).style.height=Height-minus+'px';

}

function resizein(name,minus){

if( window.onresize ) { window.resizeMonStore = window.onresize; }

window.onresize = function () {

middheight(name,minus);

};

if( window.onload ) { window.loadMonStore = window.onload; }

window.onload = function () {

    window.onresize();

    if( window.loadMonStore ) { window.loadMonStore(); }

};

}




