function makeBold(pid){
	document.getElementById(pid).style.fontWeight='bold';
}
function makeNormal(pid){
	document.getElementById(pid).style.fontWeight='normal';	
}
function mostrarTarifa(pid){
	document.getElementById(pid).style.display='block';	
}
function enviarEncuestaForm(){
	inputs = document.getElementsByTagName('input');
	flag = 0;
	
	for(i=0;i<inputs.length;i++){
		if(inputs[i].type=="radio" && inputs[i].checked==true){
			flag++;
		}
	}
	
	if(flag==1)
		document.encuesta.submit();
	else {
		alert("Debes marcar solo y al menos una opción");
	}
}

function seeResults(id){
	url = 'index.php?p=resultados&id='+id;
	window.open(url,'resultados','width=450px,height=350px,toolbar=0,location=0,status=0,menubar=0,resizable=0,scrollbars=0,resizable=0,left=300px,top=300px');
}