// Pulldown menu automático  Geral    	
function
 acessa(form){
 var myindex=form.endereco.selectedIndex
 parent.location.href=(form.endereco.options[myindex].value);
}
//  End -->

// Function Forms: Check Fields

	function checkFields() {                       // field validation -
	if ( 	(document.emailform.nome.value=="")  ||
			(document.emailform.tel.value=="")   ||   // checks if fields are blank.
	     	(document.emailform.email.value=="") ) // forms.javascriptsource.com
	   {
	   		alert("(*) Campos Obrigat�rios / Obrigatory Fields.");
	   		return false;
	   }
	
	else 
	   {
	   
	      alert("Obrigado pelo Envio!");
	      return true;
	      
	   }
}
//  End -->

