<!--
function betoltes()
			{
			var sor,szov;
			
			sor=document.getElementById("proba1");
			szov=document.width;
			if (szov==null) szov="1024";
			szov+="px";
			sor.style.left=szov;
			sor.style.visibility="visible";
			betolt(sor.id);
			}
		
		function betolt(dives)
			{
			var x,x1,szam=0;

			var sor=document.getElementById(dives);
			var uj;
			x1=sor.style.width;
			x=sor.style.left;
			x=x.substring(0,x.indexOf("px"));
			x1=x1.substring(0,x1.indexOf("px"));
			x=x-1;
			szam=Number(x);
			szam+=Number(x1);
			if (szam<0) 
				{
				x1=dives.substring(5);
				uj=Number(x1);
				uj++;
				x1="proba"+uj;
				sor.style.visibility="hidden";
				sor=document.getElementById(x1);
				if (sor==null) 
					{
					sor=document.getElementById("proba1");
					x1="proba1";
					}
				sor.style.visibility="visible";
				x=document.width;
				if (x==null) x="1024";				
				x+="px";
				sor.style.left=x;
				x="betolt('"+x1+"')";
				setTimeout(x,15);
				
				}
			else
				{
				x+="px";
				sor.style.left=x;
				uj="betolt('"+dives+"')";
				setTimeout(uj,15);
				}
			
			

			
			}
-->