function Foco(id) { Objeto(id).focus(); }

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}

function teste(){
	if (!document.Form1.empresa.value) {alert('Preencha o campo Empresa'); document.Form1.empresa.focus(); return false; }
	if (!document.Form1.nome.value) {alert('Preencha o campo Nome'); document.Form1.nome.focus(); return false; }
	if (!document.Form1.fone.value) {alert('Preencha o campo Telefone'); document.Form1.fone.focus(); return false; }
	if (document.Form1.obs.value == "") {alert('Preencha o campo Observação'); document.Form1.obs.focus(); return false; }
	if (!document.Form1.email.value) {alert('Preencha o campo Email'); document.Form1.email.focus(); return false; }
	if (document.Form1.email.value.indexOf('@') == -1 || document.Form1.email.value.indexOf('.') == -1) { alert('Por favor, preencha corretamente seu \'E-mail\''); document.Form1.email.focus(); return false; }
    Form1.action = 'send_contato.php?acao=send'; Form1.submit();

}
