function meretez()
	{
	var menuh;
	var mainh;
	var righth;
	var minh=400;
	
	var top_magassag=176;
	var menu_ennyivel_fentebb_kezdodik=147;
	var menu_top_bg_height=11;
	var main_top_bg_height=17;
	var main_bottom_bg_ennyivel_kisebb_mint_main_bottom_bg=1;
	var menu_bottom_magasag=21;
	var tartalom_padding_top_es_bottom=10+10;
	var div_bottom_tav_tobbitol=5;
	
	menuh=document.getElementById("div_menu_main").offsetHeight-menu_ennyivel_fentebb_kezdodik; //mert korábban kezdodik
	mainh=document.getElementById("div_main_main").offsetHeight ;
	righth=document.getElementById("div_right_main").offsetHeight ;
	//alert (menuh+"--"+mainh+"--"+righth);

	
	if(menuh<minh && mainh<minh && righth<minh )
		{
		document.getElementById("div_menu_main").style.height=minh+menu_ennyivel_fentebb_kezdodik-menu_top_bg_height+"px";
		document.getElementById("div_main_main").style.height=minh-main_top_bg_height+main_bottom_bg_ennyivel_kisebb_mint_main_bottom_bg+"px";
		document.getElementById("div_right_main").style.height=minh+"px";
		document.getElementById("div_bottom").style.top=minh+top_magassag+menu_ennyivel_fentebb_kezdodik+menu_bottom_magasag+tartalom_padding_top_es_bottom+div_bottom_tav_tobbitol+"px";
		document.getElementById("nagykepdiv").style.height=minh+top_magassag+200+"px";
		document.getElementById("nagykepdivhatter").style.height=minh+top_magassag+230+"px";
		document.getElementById("nagykep_hatter_kep").style.height=minh+top_magassag+230+"px";
		}
	else if(menuh>mainh && menuh>righth)
		{
		var szukseges_meret=menuh;
		document.getElementById("div_menu_main").style.height=szukseges_meret+menu_ennyivel_fentebb_kezdodik-menu_top_bg_height+"px";
		document.getElementById("div_main_main").style.height=szukseges_meret-main_top_bg_height+main_bottom_bg_ennyivel_kisebb_mint_main_bottom_bg+"px";
		document.getElementById("div_right_main").style.height=szukseges_meret+"px";
		document.getElementById("div_bottom").style.top=szukseges_meret+top_magassag+menu_ennyivel_fentebb_kezdodik+menu_bottom_magasag+tartalom_padding_top_es_bottom+div_bottom_tav_tobbitol+"px";
		document.getElementById("nagykepdiv").style.height=szukseges_meret+top_magassag+200+"px";
		document.getElementById("nagykepdivhatter").style.height=szukseges_meret+top_magassag+230+"px";
		document.getElementById("nagykep_hatter_kep").style.height=szukseges_meret+top_magassag+230+"px";
		}
	else if(mainh>righth)
		{
		var szukseges_meret=mainh;
		document.getElementById("div_menu_main").style.height=szukseges_meret+menu_ennyivel_fentebb_kezdodik-menu_top_bg_height+"px";
		document.getElementById("div_main_main").style.height=szukseges_meret-main_top_bg_height+main_bottom_bg_ennyivel_kisebb_mint_main_bottom_bg+"px";
		document.getElementById("div_right_main").style.height=szukseges_meret+"px";
		document.getElementById("div_bottom").style.top=szukseges_meret+top_magassag+menu_ennyivel_fentebb_kezdodik+menu_bottom_magasag+tartalom_padding_top_es_bottom+div_bottom_tav_tobbitol+"px";
		document.getElementById("nagykepdiv").style.height=szukseges_meret+top_magassag+200+"px";
		document.getElementById("nagykepdivhatter").style.height=szukseges_meret+top_magassag+230+"px";
		document.getElementById("nagykep_hatter_kep").style.height=szukseges_meret+top_magassag+230+"px";
		}
	else
		{
		var szukseges_meret=righth-menu_top_bg_height;
		document.getElementById("div_menu_main").style.height=szukseges_meret+menu_ennyivel_fentebb_kezdodik-menu_top_bg_height+"px";
		document.getElementById("div_main_main").style.height=szukseges_meret-main_top_bg_height+main_bottom_bg_ennyivel_kisebb_mint_main_bottom_bg+"px";
		document.getElementById("div_right_main").style.height=szukseges_meret+"px";
		document.getElementById("div_bottom").style.top=szukseges_meret+top_magassag+menu_ennyivel_fentebb_kezdodik+menu_bottom_magasag+tartalom_padding_top_es_bottom+div_bottom_tav_tobbitol+"px";
		document.getElementById("nagykepdiv").style.height=szukseges_meret+top_magassag+200+"px";
		document.getElementById("nagykepdivhatter").style.height=szukseges_meret+top_magassag+230+"px";
		document.getElementById("nagykep_hatter_kep").style.height=szukseges_meret+top_magassag+230+"px";
		}
	}
