// JavaScript Document
function middheight(id_div,minus){
	var nav_name=navigator.appName;
	 if ((nav_name.search("Opera")!=-1)) {
	     Height = document.documentElement.clientHeight;		
	    } else {
		 	    if ((nav_name.search("Netscape")!=-1)) {
				    Height = document.documentElement.clientHeight;
				
			      } else {
				           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(); }
};
}


