
function Telefono_Restaurante(id_restaurante)
{    
    
    try
	{
		ajax1 = new XMLHttpRequest();
	}
	catch (error)
	{
		try
		{
			ajax1 = new ActiveXObject("Microsoft.XMLHTTP");
		}
		catch (error)
		{
			ajax1 = null;

			return false;
		}
		}	    	
	ajax1.open("GET", "/telef_process.php?c=" + id_restaurante);
	
	ajax1.send(null);	
}



function Mapa_Restaurante(id_restaurante)
{    
    
    try
	{
		ajax1 = new XMLHttpRequest();
	}
	catch (error)
	{
		try
		{
			ajax1 = new ActiveXObject("Microsoft.XMLHTTP");
		}
		catch (error)
		{
			ajax1 = null;

			return false;
		}
		}	    	
	ajax1.open("GET", "/mapa_process.php?c=" + id_restaurante);
	
	ajax1.send(null);	
}

