<!--

function votar(){
	total=document.frmencuesta.voto.length;
	for (i=0;i<total;i++) if (document.frmencuesta.voto[i].checked==true) break;
	if (i==total){ alert('Debe elegir una Opción');	return false;}
	return true;
}


document.write('<b>Opinión ciudadana<br /></b>¿Cómo califica la atención del Hospital de Calama?<div id="encuesta"><form method="post" name="frmencuesta" action="http://www.loactual.cl/encuestas/" onsubmit="return votar();"><input type="hidden" name="encuesta" value="13" ><input type="radio" name="voto" value="0">&nbsp;Muy buena<br /><input type="radio" name="voto" value="1">&nbsp;Aceptable<br /><input type="radio" name="voto" value="2">&nbsp;Deficiente<br /><input type="radio" name="voto" value="3">&nbsp;Pésima<br /><input type="submit" value="Votar"><br /><a href="encuestas/">Ver resultados</a></div></form>');	
//-->