	function MM_openBrWindow(theURL,winName,features) { //v2.0
		window.open(theURL,winName,features);
	}
	
	function verifica (f)	{		
		// Verifica se foi preenchido Nome ou Razão Social		
		if (f.nome_ou_razao_social.value=="") {
			alert ('Digite o "Nome ou Razão Social".');
			f.nome_ou_razao_social.focus();
			return false;
		}		
		//		
		if (f.nome.value=="") {
			alert ('Digite o "Nome".');
			f.nome.focus();
			return false;
		}
		//
		if (f.cpg_ou_cnpj.value == "") {
			alert('Digite o "CPF ou o CNPJ".');
			f.cpf_ou_cnpj.focus();
			return false;
		}
		//
		if (f.endereco.value == "") {
			alert('Digite o "Endereço".');
			f.endereco.focus();
			return false;
		}
		//
		if (f.numero.value == "") {
			alert('Digite o "Número".');
			f.numero.focus();
			return false;
		}
		//
		if (f.complemento.value == "") {
			alert('Digite o "Complemento".');
			f.complemento.focus();
			return false;
		}
		//
		if (f.cep.value.lenght <= 7) {
			alert('Digite o "CEP".');
			f.cep.focus();
			return false;
		}
		//
		if (f.bairro.value == "") {
			alert('Digite o "Bairro".');
			f.bairro.focus();
			return false;
		}
		//
		if (f.cidade.value == "") {
			alert('Digite a "Cidade".');
			f.cidade.focus();
			return false;
		}
		//
		if (f.unidade_federal.selectedIndex == 0) {
			alert ('Selecione a "Unidade Federal".');
			f.unidade_federal.focus();
			return false;
		}		
		//
		if (f.ddd_fone.lenght <=3) {
			alert('Digite a "Cidade".');
			f.ddd_fone.focus();
			return false;
		}		
		//
		if (f.telefone.value=="") 	{
			alert ('Digite o "Telefone".');
			f.telefone.focus();
			return false;
		}
		//
		if (f.responsavel.value=="") 	{
			alert ('Digite o "Responsável".');
			f.responsavel.focus();
			return false;
		}
		//
		if (f.cargo.value=="") 	{
			alert ('Digite o "Cargo".');
			f.cargo.focus();
			return false;
		}
		//
		if (f.email1.value=="" || f.email1.value.indexOf('@' , 0) == -1 || f.email1.value.indexOf('.',0) == -1) {
			alert ('"E-mail" Inválido.');
			f.email1.focus();
			return false;
		}
		//
		if (f.rg.value=="") {
			alert ('Digite o "RG".');
			f.rg.focus();
			return false;
		}
		//
		if (f.dia_nascimento.selectedIndex == "Dia") {
			alert ('Selecione 0 "Dia do Nascimento".');
			f.dia_nascimento.focus();
			return false;
		}
		//
		if (f.mes_nascimento.selectedIndex == "Mês") {
			alert ('Selecione 0 "Mês do Nascimento".');
			f.mes_nascimento.focus();
			return false;
		}	
		//
		if (f.ano_nascimento.selectedIndex == "Ano") {
			alert ('Selecione 0 "Ano do Nascimento".');
			f.ano_nascimento.focus();
			return false;
		}		
		//
		if (f.nome_dominio.value=="") {
			alert ('Digite o "Nome do Domínio".');
			f.nome_dominio.focus();
			return false;
		}
		if (f.termos.selectedIndex == "Não") {
			alert ('Você deve ler e aceitar os "Termos".');
			f.termos.focus();
			return false;
		}	
		//
	return true;
	
	}