function AbreVentana(url, x, y, w, h, sb, loc) {
	MiVentana = window.open (url,'MiVentana','location='+loc+', scrollbars='+sb+',left='+x+',top='+y+',height='+h+',width='+w);
	MiVentana.resizeTo(w+10,h+60);
	MiVentana.focus();
}

function Votar(f) {
	var votook=false;
	for (i=0;i<f.opciones.length;i++) { 
		if (f.opciones[i].checked) 
			votook=true; 
	}
	if (votook) {
		f.submit();
	} else {
		alert('Debe escoger una opción para votar.');
		return;
	}
}

