function abrepagina(arquivo){
    window.open(arquivo, 'atrativos','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=605,height=605');
}

function checkForm(fields) {
  for(var i=0; i<fields.length; i++) {
    if(document.getElementById(fields[i]) && document.getElementById(fields[i]).value=="") {
      document.getElementById(fields[i]).style.background = '#FF9B9B';

      document.getElementById(fields[i]).onblur = function() {
          document.getElementById(fields[i]).style.background = '#FFFFFF';
      }

      alert("Por favor, informe o campo marcado para poder continuar.");
      document.getElementById(fields[i]).focus();
      return false;
    }
  }

  return true;
}
