function Visitas(id,destino,enlace)
	{
		
		var id =  id;
		var destino =  destino;
		var enlace =  enlace;	
	
	var url =  'counter.php';
		var pars = "id="+id+"&destino="+destino+"&enlace="+enlace; 
		var ajax = new Ajax.Request( url, {
                                parameters: pars,
                                method:"get",
                                onComplete: procesaRespuesta
                                }
		);



	}
	
	
		function procesaRespuesta( resp ){
      $("resultado").innerHTML = resp.responseText;
}


