function restulRimelor(page, oldpage, where)
{
		var xmlhttp=false;
		try 
		{
			xmlhttp = new ActiveXObject('Msxml2.XMLHTTP');
		}
		catch (e) 
		{
			try
			{
				xmlhttp = new
				ActiveXObject('Microsoft.XMLHTTP');
			}
			catch (E)
			{
				xmlhttp = false;
			}
		}
		if (!xmlhttp && typeof XMLHttpRequest!='undefined')
		{
			xmlhttp = new XMLHttpRequest();
		}
		var file = 'maimulterime.php?rima=';
		xmlhttp.open('GET', file + page + '&rimaveche=' + oldpage, true); 
		xmlhttp.onreadystatechange=function() 
		{
			document.getElementById('restulrimelor' + where).style.display = "none";
			
		
			document.getElementById('maimulterime' + where).innerHTML = '<div id="loading" style="margin-top:10px; margin-bottom:10px"><img src="images/loader_mic.gif" alt="" title="" style="vertical-align:top; padding-right:5px" /> Se &icirc;ncarc&#259;... (Poate dura dac&#259; sunt multe rime)</div>'; 
			if (xmlhttp.readyState==4)
			{ 
				var content = xmlhttp.responseText; 
				if( content )
				{
					document.getElementById('maimulterime' + where).innerHTML = content; 
				}
			}
		}
		xmlhttp.send(null) 
		return;
}
