function meret_nagy(id){
	var height=30;
	while(height<300){
		setTimeout("set_size('"+id+"',"+height+")",1000);
		height++;
	}
}
function meret_kicsi(id){
	document.getElementById(id).style.height= "40px";
}
function set_size(id,height){
	document.getElementById("div"+id).style.height=height+"px";
	document.getElementById("ob"+id).style.height=height+"px";
	document.getElementById("em"+id).style.height=height+"px";
//	alert(" "+id+" "+height);
}

function popup(szoveg,width,height){
//*	if(szoveg!=null){
//	var ujablak = open('','popup','scrollbars=no,toolbar=no,location=no,directories=no,menubar=no,status=no,width='+width+',height='+height);
//    ujablak.document.open();
//	var txt ="<html>";
//	txt+="<head><title>Sobe&reg;Guard Térkép</title></head>";
//	txt+="<style>body { margin:0px; }</style>";
//	txt+="<body>"+szoveg+"</body></html>";
//	ujablak.document.write(txt);
//	}
//	else*/
		window.open(szoveg,'','scrollbars=no,toolbar=no,location=no,directories=no,menubar=no,status=no,width='+width+',height='+height);
}