var voto=0;
var tipo=new Array('Deficiente','Regular','Bueno','Muy Bueno','Excelente');
function cargar(n,nivel){
	var tempimg;
	if (voto==0){
		for (i=2;i<6;i++){
			tempimg=document.getElementById('est'+i);
			tempimg.src=nivel+'starno.gif';
		}
		for (i=2;i<=n;i++){
			tempimg=document.getElementById('est'+i);
			tempimg.src=nivel+'starsi.gif';
		}
		document.getElementById('mensaje').innerHTML=tipo[n-1];;
	}
}
function seleccion(n,nivel,logueado){
if (logueado=='no'){
	location.href='/Entrada_al_sistema.htm';
}else{
	if (voto==0){
		for (i=2;i<6;i++){
				tempimg=document.getElementById('est'+i);
				tempimg.src=nivel+'starno.gif';
		}
		for (i=2;i<=n;i++){
				tempimg=document.getElementById('est'+i);
				tempimg.src=nivel+'starsi.gif';
		}
		document.getElementById('mensaje').innerHTML=tipo[n-1];
		document.getElementById('calificacion').value=n;
		document.getElementById('textoCalifica').style.display='inline';
	}else { document.getElementById('mensaje').innerHTML='Su calificación ya fue enviada'; }
}
}
function validarComentario(){
	if ($('#codUsuario').val() == ''){alert('Disculpe debe iniciar sesión para poder comentar este libro.');return false}
	if ($('#comentario').val() == ''){alert('Disculpe debe llenar el campo comentario para poder continuar.');return false}
	return true;
}

function ajaxComentario( URL, consulta , campo , tabla ){
		var cond = $.ajax({
			data:{'consulta':consulta , 'campo':campo , 'tabla':tabla , 'BD':'$BD' , 'aplic':'$EEE' },
			datatype:'text',
			async:false,
			type:'post',
			url:URL
		}).responseText;
		return cond;
	};
	






