function detallar(id)
{
        var url = 'index.php?jump=detalleresultado&id='+escape(id);
        var myAjax = new Ajax.Updater("pregunta"+id,
        url,
        {asynchronous:true, evalScripts:true});

}

function guardar(id)
{
        var url = 'index.php?jump=guardar&id';
        var myAjax = new Ajax.Updater("pregunta"+id,
        url,
        {asynchronous:true, evalScripts:true});

}

function votar(id)
{
		var respuesta = document.form1.respuesta.value;
		
		for (i=0; i < document.form1.respuesta.length; i++) {
			if (document.form1.respuesta[i].checked) {
				respuesta = i+1;
			}
		} 
	
        var url = 'index.php?jump=encuesta&id='+escape(id)+'&encuesta='+escape(respuesta);
        var myAjax = new Ajax.Updater("capaencuesta",
        url,
        {asynchronous:true, evalScripts:true});

}
