  function doMax3(gid) {
	if($("#pillanat"+gid).html()=="Egy pillanat...") {  	
	  	$.ajax({type:"GET",
	  		url:"/index.php/json/max3",
	  		data:"gid="+encodeURIComponent(gid),
	  		datatype:"json",
	  		error:function anon2(xml,msg,et) {window.alert('Hiba:' + msg + et);},
	  		success: function anon(json) {$("#pillanat"+gid).html(json);}  		
	  		});
	}
  	return true;
  }
