// JavaScript Document

// Função Link de matérias (fiveedit linha:132)
function Url(url, cd_matia, cd_site){
	document.location.href = url+"?cd_matia="+cd_matia+"&cd_site="+cd_site;
}

// Função Link da paginação (fiveedit linha:)
function Page(cd_sesit, p, mod){
	document.location.href = "?cd_sesit="+cd_sesit+"&p="+p+"&mod="+mod;
}


// Função ordena por portfólio (fiveedit linha:64)
function ordena(mod){
	document.location.href = "?mod="+mod;
}


function faleConosco() {
	
	var msg = "";
	
	if(window.document.getElementById('nome').value == ""){
		msg = " - Informe seu nome;\n";
	}
	
	if(window.document.getElementById('empresa').value == ""){
		msg = msg + " - Informe sua empresa;\n";
	}
	
	if(window.document.getElementById('email').value == ""){
		msg = msg + " - Informe seu e-mail;\n";
	}
	
	if(window.document.getElementById('telefone').value == ""){
		msg = msg + " - Informe seu telefone;\n";
	}
	
	if(window.document.getElementById('mensagem').value == ""){
		msg = msg + " - Digite sua mensagem.\n";
	}
	
	
	if(msg)
		alert("Atenção!\n\n" + msg);
	else
		window.document.FrmFaleConosco.submit();

}



function trabalheConosco() {
	
	var msg = "";
	
	if(window.document.getElementById('nm_pssoa').value == ""){
		msg = " - Informe seu nome;\n";
	}
	
	
	
	if(msg)
		alert("Atenção!\n\n" + msg);
	else
		window.document.FrmTrabalheConosco.submit();

}




function Aba(form, id){
	window.document.getElementById('FrmFaleConosco').style.display = "none";
	window.document.getElementById('FrmTrabalheConosco').style.display = "none";
	window.document.getElementById('cto').className = "nolink";
	window.document.getElementById('cno').className = "nolink";

	window.document.getElementById(form).style.display = "";
	window.document.getElementById(id).className = "atividade";
	
}