

function nuevoAjax()
{ 

	var xmlhttp=false; 
	try 
	{ 
		// No IE
		xmlhttp=new ActiveXObject("Msxml2.XMLHTTP"); 
	}
	catch(e)
	{ 
		try
		{ 
			// IE 
			xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); 
		} 
		catch(E) { xmlhttp=false; }
	}
	if (!xmlhttp && typeof XMLHttpRequest!="undefined") { xmlhttp=new XMLHttpRequest(); } 
	return xmlhttp; 
}




function guardar(id)
{
	


if(document.getElementById('favorito' + id).src=="http://adeban.org/imagenes/botones/guardar.gif"){
	document.getElementById('favorito' + id).src="http://adeban.org/imagenes/botones/guardado.gif";
}else{ 
	document.getElementById('favorito' + id).src="http://adeban.org/imagenes/botones/guardar.gif"; 
	}


urlDestino = "secciones/privada/favoritos/guardar_post.php?id=" + id;

		var ajax=nuevoAjax();
		ajax.open("POST", urlDestino, true);
		ajax.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
		ajax.send("");
		ajax.onreadystatechange=function()
		{
			if (ajax.readyState==4)
			{
				var respuesta=ajax.responseText;
				if(respuesta=="OK")
				{
					mal_guardar();
				}
				else
				{
					bien_guardar(respuesta);	
				}
			}
		}		
}


function guardar_evento(id)
{
	


if(document.getElementById('favorito' + id).src=="http://adeban.org/imagenes/botones/guardar.gif"){
	document.getElementById('favorito' + id).src="http://adeban.org/imagenes/botones/guardado.gif";
}else{ 
	document.getElementById('favorito' + id).src="http://adeban.org/imagenes/botones/guardar.gif"; 
	}


urlDestino = "secciones/privada/favoritos/guardar_evento.php?id=" + id;

		var ajax=nuevoAjax();
		ajax.open("POST", urlDestino, true);
		ajax.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
		ajax.send("");
		ajax.onreadystatechange=function()
		{
			if (ajax.readyState==4)
			{
				var respuesta=ajax.responseText;
				if(respuesta=="OK")
				{
					mal_guardar();
				}
				else
				{
					bien_guardar(respuesta);	
				}
			}
		}		
}

function mal_guardar(respuesta){

}

function bien_guardar(respuesta){

}

