/* Validación 
------------------------------------------------------------- */
function checkComentario(form){
	var retorna = false;
	if (form.tipousuario.value == "CRONISTA" && form.logueado.value==0){
		alert("Debe estar logueado para publicar como cronista");
	}else{
		if (form.tipousuario.value == "OTRO" && form.nombre.value.length==0){
   			alert("Ingrese su nombre");
			form.nombre.focus();
		} else{
			if(form.txtComentario.value.length == 0){
				alert("Ingrese texto del comentario");
				form.txtComentario.focus();
				retorna = false;
			}else{
				retorna=true;
			}
		}
	}
	return retorna;
}

/*	Solapas Comentarios
------------------------------------------------------------- */
function ComentarioCronista(form) {
	form.tipousuario.value = "CRONISTA";
//	document.getElementById('div_cronista').style.display="block";
	document.getElementById('div_otro').style.display="none";
}
function ComentarioOtro(form) {
	form.tipousuario.value = "OTRO";
//	document.getElementById('div_cronista').style.display="none";
	document.getElementById('div_otro').style.display="block";
}
function ComentarioAnonimo(form) {
	form.tipousuario.value = "ANONIMO";
//	document.getElementById('div_cronista').style.display="none";
	document.getElementById('div_otro').style.display="none";
}
