var XMLHttp;

function getXMLHttp(){
	var XMLHttp = null;
	try{
		XMLHttp = new XMLHttpRequest();
	}catch(e){
		try{
			XMLHttp = new ActiveXObject("Msxml2.XMLHTTP");
		}catch(e){
			try{
				XMLHttp = new ActiveXObject("Microsoft.XMLHTTP");
			}catch(e){
				alert("Tu navegador no soporta ajax o tienes javascript desahibilitado");
				return false;
			}
		}
	}

	return XMLHttp;
		
}

function getInfo(){
	if (XMLHttp.readyState==4)
	{ 
	document.getElementById("detalles").innerHTML=XMLHttp.responseText;
	}	
}

function showDetails(id){
	XMLHttp = getXMLHttp();
	
    XMLHttp.onreadystatechange=getInfo;
	XMLHttp.open("GET","informacion.php?idp="+id,true);
	XMLHttp.send(null);
	
}

function prueba(image, title, price, zones, enlace){
	image = image.replace(/I/,"P");
	document.getElementById('RSSItemContentIFrame').src=''+enlace+'#lnk_preg';
	document.getElementById("detalles").innerHTML = "<strong>Precio: $"+price+"</strong><br/><img src='"+image+"' class='imagen'  width='170' height='170'/><p class='title_box'><a href='http://pmstrk.mercadolibre.com.mx/jm/PmsTrk?tool=5303159&go=http://www.mercadolibre.com/jms/mlm/reg' target='_blank'>CLICK PARA Comprar/Vender/Preguntar</a></p>";
}
