// JavaScript Document

  function init(){

	w = screen.availWidth - 225;
	h = screen.availHeight - 275;   
		if(screen.height < 790){
			h = 450;       
	
			myObj = window.document.getElementById("panel_main_body_text");
						myObj.style.margin = 10 + 'px';
						myObj.style.width = 760 + 'px';
		  };
		
		myObj=window.document.getElementById("panel_top_main");
		myObj.style.width = w + 'px';
		//panel_top_inner
		myObj=window.document.getElementById("panel_top_inner");
		myObj.style.width = w - 20 + 'px';		
		
		myObj=window.document.getElementById("panel_left_menu");
		myObj.style.height = h + 'px';        
		//panel_inner_left
		myObj=window.document.getElementById("panel_inner_left");
		myObj.style.height = h-20 + 'px';        		      
		
		myObj=window.document.getElementById("panel_container");
		myObj.style.width = screen.width - 40 + 'px';
		
		myObj=window.document.getElementById("panel_container");
		myObj.style.height = h + 'px';//screen.availHeight - 170 + 'px'; 
		
		myObj=window.document.getElementById("panel_main");
		myObj.style.width = w + 'px';
					
		myObj=window.document.getElementById("panel_main");
		myObj.style.height = h + 'px';
		//panel_top_menu
		myObj=window.document.getElementById("panel_top_menu");
		myObj.style.width = w - 20 + 'px';
		//panel_main_body
		myObj=window.document.getElementById("panel_main_body");
		myObj.style.width = w - 20 + 'px';
		myObj=window.document.getElementById("panel_main_body");
		myObj.style.height = h - 60 + 'px';  
		//panel_main_body_text
		if(screen.height > 790){            
		  myObj=window.document.getElementById("panel_main_body_text");
		  myObj.style.width = w - 80 + 'px';
		};
		
		myObj=window.document.getElementById("panel_main_body_text");
		myObj.style.height = h - 120 + 'px';  
					
   	    if (/Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent)){	
			myObj=window.document.getElementById("panel_left_menu");			
			myObj.style.top = 123 + 'px';
			myObj=window.document.getElementById("panel_main");
			myObj.style.top = 123 + 'px';
		};
	};