function Encuesta_Votar(Id)
{
     var data = General_serialize($('encuesta'+Id));
	 $('encuetabox'+Id).innerHTML = "<div class='box'>Procesando su voto, por favor espere...</div>";
     var url = URLPATH+'/ajax/encuesta/operaciones/votar/'+Id;
     new Ajax.Updater('encuetabox'+Id,url, {asynchronous:true,method:'post',postBody:data})
}
