// get Products Results

	function loadProds(divAlvo, page)
	{
		var xmlHttp;
		$(divAlvo).style.display="block";
		$(divAlvo).innerHTML="<p>Loading request...</p>";
		
		
		try
		{
			// Firefox, Opera 8.0+, Safari
			xmlHttp=new XMLHttpRequest();
		}
			catch (e)
			{
				// Internet Explorer
				try
				{
					xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
				}
			catch (e)
			{
				try
				{
					xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
				}
				catch (e)
				{
					alert("Your browser does not support AJAX!");
					return false;
				}
			}
		}
	
		xmlHttp.onreadystatechange=function()
		{
			///////////////
			if(xmlHttp.readyState!=4)
			{W
				$(divAlvo).style.display="block";
				$(divAlvo).innerHTML="<p>Loading request...</p>";
			}
			
			if(xmlHttp.readyState==4)
			{
				$(divAlvo).style.display="block";
				$(divAlvo).innerHTML = "";
				$(divAlvo).innerHTML = xmlHttp.responseText;
				//$(divAlvo).fade('in');
			}
		}
		
		xmlHttp.open("GET",page,true);
		xmlHttp.send(null);
	}
	

