// Pulldown menu automático       	
function pulldown_menu(){
	// Create a variable url to contain the value of the
	// selected option from the the form named pulldown and variable selectname
	var url = document.pulldown.selectname.options[document.pulldown.selectname.selectedIndex].value
	// Re-direct the browser to the url value
	window.location.href = url	
}
//  End -->

// Pulldown menu automático       	
function pulldown_menu2(){
	// Create a variable url to contain the value of the
	// selected option from the the form named pulldown and variable selectname
	var url = document.pulldown2.selectname2.options[document.pulldown2.selectname2.selectedIndex].value
	// Re-direct the browser to the url value
	window.location.href = url	
}
//  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 -->
