// JavaScript Document



function send_form_fale_conosco(f) {

	var erro="";

	if (f.assunto.options[0].selected) 	erro += "Selecione um assunto.\n";

	if (f.nome.value == "") 			erro += "Digite seu Nome.\n";

	if (f.email.value == "") 			erro += "Digite seu E-mail.\n";

	if (!checkMail(f.email.value)) 		erro += "Digite um E-mail válido.\n";

	if (f.mensagem.value == "") 		erro += "Digite a Mensagem.\n";

	if (erro!="") alert("Corrija o(s) erro(s) abaixo :\n\n"+erro); 

	return (erro==""); 

}





function checkMail(mail) {

	return (mail != "" 

		&& mail.indexOf("@") == mail.lastIndexOf("@")

		&& mail.indexOf("@") > 0

		&& mail.lastIndexOf(".") > mail.indexOf("@")

		&& mail.lastIndexOf(" ") == -1

	);

}



function MM_jumpMenu(targ,selObj,restore){ //v3.0

  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");

  if (restore) selObj.selectedIndex=0;

}



function MM_openBrWindow(theURL,winName,features) { //v2.0

  window.open(theURL,winName,features);

}