// seguralava.js

function abrirDatos(){
	
	document.getElementById('datos').style.visibility="visible";						
	document.getElementById('datos').style.display="block";		
}

function cerrarDatos(){
	document.getElementById('datos').style.visibility="hidden";
	document.getElementById('datos').style.display="none";
}

// funcion que chequea si el String s está vacio
function isVacio (s){
	return ((s == null) || (s.length == 0));
}

function fncCheckEmail(valor) {
  if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(valor)){
    return (true)
  } else {
    return (false);
  }
}