			function whereY(e) {
				var posx = 0;
				var posy = 0;
				if (!e) var e = window.event;
				if (e.pageX || e.pageY) 	{
					posx = e.pageX;
					posy = e.pageY;
				}
				else if (e.clientX || e.clientY) 	{
					posx = e.clientX + document.body.scrollLeft
						+ document.documentElement.scrollLeft;
					posy = e.clientY + document.body.scrollTop
						+ document.documentElement.scrollTop;
				}
				return posy;
			}

			function whereX(e) {
				var posx = 0;
				var posy = 0;
				if (!e) var e = window.event;
				if (e.pageX || e.pageY) 	{
					posx = e.pageX;
					posy = e.pageY;
				}
				else if (e.clientX || e.clientY) 	{
					posx = e.clientX + document.body.scrollLeft
						+ document.documentElement.scrollLeft;
					posy = e.clientY + document.body.scrollTop
						+ document.documentElement.scrollTop;
				}
				return posx;
			}
			
	function mutat(e, s)
 {
  var x = document.getElementById('magyardiv');
		var y = document.getElementById('magyarszoveg');
		y.innerHTML = '<table cellpadding=0 cellspacing=0><tr><td style="font-family:arial; color:#674927;font-size:16px;font-weight:bold;text-align:center;" width=145 height=59 valign=middle align=top>' + s + '</td></tr></table>';
		x.style.top = whereY(e)-100;
		x.style.left = whereX(e) - 110;
		x.style.display = 'block';
		
 }	
	
		function mutat2(e, s)
 {
  var x = document.getElementById('magyardiv');
		var y = document.getElementById('magyarszoveg');
		y.innerHTML = y.innerHTML = '<table cellpadding=0 cellspacing=0><tr><td style="font-family:arial; color:#674927;font-size:16px;font-weight:bold;text-align:center;" width=145 height=59 valign=middle align=top>' + s + '</td></tr></table>';
		x.style.top = whereY(e)-100;
		x.style.left = whereX(e) - 60;
		x.style.display = 'block';
		
 }	
	
			function mutat3(e, s)
 {
  var x = document.getElementById('madardiv');
		var y = document.getElementById('madarszoveg');
		y.innerHTML = s;
		x.style.top = whereY(e)-90;
		x.style.left = whereX(e) - 60;
		x.style.display = 'block';
		
 }	
	
	function elrejt()
	 {
		  var x = document.getElementById('magyardiv');
	   var y = document.getElementById('madardiv');
		x.style.display = 'none';
			y.style.display = 'none';
		}
		
		 
			
			<!-- Browser Check -->
			iens6=document.all||document.getElementById
			ns4=document.layers
 
			<!--GLOBAL SCROLLER VARIABLES-->
 
			var scrollspeed =  30 <!-- scrollspeed, lower is faster -->
 
			var step=5
			var contentobj
			var contentheight
			var theobj
			var theheight
			var thename
			var thecontainer
			var theScroller
			var timerup
			var timerdown
			var timerupname
			var timerdownname
			var szamol = 0
			
	
			<!--END GLOBAL SCROLLER VARIABLES-->
 
			<!--GLOBAL SCROLLER FUNCTIONS-->
			function director(incomingScroller,theFunction) {
			stopall()
			theScroller=incomingScroller
			theobj = "contentobj"+theScroller
			theheight = "contentheight"+theScroller
			if(iens6){
				thename = "content"+theScroller
				theobj=document.getElementById? document.getElementById(thename):document.all.thename
				theheight=theobj.offsetHeight
				if (document.getElementById&&!document.all){
					step=5
				}
			}else if(ns4){
				thename = "nscontent"+theScroller
				thecontainer = "nscontainer"+theScroller
				theobj = eval("document."+thecontainer+".document."+thename)
				theheight=theobj.clip.height
			}
				if(theFunction=="sd") {
					timerdown="window.down"+theScroller
					timerdownname="down"+theScroller
					scrolldown()
				}else if(theFunction=="el") {
					scrollegeszle()
				}else if(theFunction=="su") {
					timerup="window.up"+theScroller
					timerupname="up"+theScroller
					scrollup()
				}else if(theFunction=="sa") {
					stopall()
				}else if(theFunction=="st") {
					shifttotop()
				}
			}
			<!-- scroll down function -->
			function scrolldown() {
				if(iens6&&parseInt(theobj.style.top)>=(theheight*(-1)+100)){
					theobj.style.top=parseInt(theobj.style.top)-step;
					var mag = document.getElementById('mags');
					egys = (theheight+100)/step;
					egys+='';
					egys = parseInt(egys);
					
					ugras = (420 / egys)
					ugras += '';
					ugras = parseInt(ugras)
					var y = document.getElementById('co');
					y.innerHTML = ''
				 
					szamol += ugras;
					mag.style.top = szamol + 'px';
				}else if(ns4&&theobj.top>=(theheight*(-1)+100)){
					theobj.top-=step
				}
				timerdownname = setTimeout("scrolldown()",scrollspeed)
			}
 
			<!-- scroll up function -->
			function scrollup() {
				if(iens6&&parseInt(theobj.style.top)<=0){
					theobj.style.top=parseInt(theobj.style.top)+step
				}else if(ns4&&theobj.top<=0){
					theobj.top+=step
				}
				timerupname = setTimeout("scrollup()",scrollspeed)
			}
			<!-- function to stop all scroll timers -->
			function stopall() {
				if(timerup){
					clearTimeout(timerupname)
				}
				if(timerdown){
					clearTimeout(timerdownname)
				}
			}
			<!-- function that shifts the object to top -->
			function shifttotop(){
				stopall()
				if (iens6) {
					theobj.style.top=0
				}else{
					theobj.top=0
				}
			}
 
			<!--END GLOBAL SCROLLER FUNCTIONS-->
	
	
		
