// JavaScript Document

var nav4 = window.Event ? true : false;

function soloNumeros(evt,decimales){
	// NOTE: Backspace = 8, Enter = 13, '0' = 48, '9' = 57
	var key = nav4 ? evt.which : evt.keyCode;
	if(decimales == 0){	return (key <= 13 || (key >= 48 && key <= 57));
	}else{	return (key <= 13 || (key >= 48 && key <= 57) || key==46 );	}
}

function formulario_voto(formobj){
	var cantidad = document.getElementById('campo_cantidad').value;
	var seguridad	= document.getElementById('seguridad').value;			
	if(cantidad == "" || cantidad == null || seguridad == "" || seguridad == null){
		alert("Debe insertar un Total factura, y completar el campo Seguridad");
		return false;
	}else{
		return true;
	}
}

function formulario_comentar(formobj){
	var nombre 		= document.getElementById('nombre').value;
	var e_mail 		= document.getElementById('e_mail').value;
	var comentario	= document.getElementById('comentario').value;
	var seguridad	= document.getElementById('seguridad2').value;			
			
	if(nombre == "" || nombre == null || e_mail == "" || e_mail == null || comentario == "" || comentario == null || seguridad == "" || seguridad == null){
		alert("Debe rellenar los campos: Nombre, E-mail, Comentario, Seguridad");
		return false;
	}else{
		return true;
	}
}
		
function lanzar_detalle(){
	var filtro_provincia = document.getElementById('filtro_provincia').value;
	var filtro_selector	 = document.getElementById('filtro_selector').value;
	var filtro_fecha	 = document.getElementById('filtro_fecha').value;			
			
	document.location.href = (url_encuesta+filtro_selector+"/"+filtro_provincia+"/"+filtro_fecha+"/ver-detalle.html");
		
	return false;
}