// JavaScript Document
function middheight(topheight,bottheight,idelem){
var nav_name=navigator.appName;
 if ((nav_name.search("Netscape")!=-1) || (nav_name.search("Opera")!=-1)) {
	 var Height = document.body.scrollHeight;
     var myheight= Height - topheight - bottheight;

	 } else {
	 var Height = document.body.scrollHeight;
     var myheight= Height - topheight - bottheight;
		  }
return myheight;
}




if( window.onresize ) { window.resizeMonStore = window.onresize; }
window.onresize = function () {
document.getElementById('middle').height=middheight(178,49,'middle');
document.getElementById('tblin').height=middheight(178,49,'tblin');
document.getElementById('mainvline').height=middheight(178,49,'tblin');
document.getElementById('leftmenu_middle').height=middheight(209,87,'leftmenu_middle');

};
if( window.onload ) { window.loadMonStore = window.onload; }
window.onload = function () {
    window.onresize();
    if( window.loadMonStore ) { window.loadMonStore(); }
};

 
