﻿function envia(f)

{
   var mes, ano, pagina;
   
	mes = f.cmbMes.options[f.cmbMes.selectedIndex].value;
   	ano = f.cmbAno.options[f.cmbAno.selectedIndex].value;
   	pagina = "http://www.mar.mil.br/dhn/chm/tabuas/30685" + mes + ano + ".htm";

	window.open(pagina, "_blank");
	return false;
}

function validarFormContato() {
	var nome = document.getElementById('nome');
	var email = document.getElementById('from'); 
	var msg = document.getElementById('mensagem');
	
	if (nome.value == "") {
		alert('O campo nome não pode ficar em branco.');
		nome.focus();
		return false;
	} else if (email.value == "") {
		alert('O campo e-mail não pode ficar em branco.');
		email.focus();
		return false;
	} else if (msg.value == "") {
		alert('O campo mensagem não pode ficar em branco.');
		msg.focus();
		return false;
	} else {
		return true;
	}
}