		
	function vazio1(){
                document.newsletter.nome.style.background='#009900';          
                if ((document.newsletter.nome.value.length==0)||(document.newsletter.nome.value==' Nome')){
                    /*alert('Preencha o campo nome');*/
                    document.newsletter.nome.style.background='red';
                    document.newsletter.nome.focus();
                    return false;
                }
				
				 document.newsletter.email.style.background='#009900';          
                if ((document.newsletter.email.value.length==0)||(document.newsletter.email.value==' E-mail')){
                    /*alert('Preencha o campo nome');*/
                    document.newsletter.email.style.background='red';
                    document.newsletter.email.focus();
                    return false;
                }
            return true;
        }


	function vazio2(){
				document.contato.nome.style.background='#009900';			
				if (document.contato.nome.value.length==0){
					/*alert('Preencha o campo nome');*/
					document.contato.nome.style.background='red';
					document.contato.nome.focus();
					return false;
				}
				
				document.contato.mail.style.background='#009900';			
				if (document.contato.mail.value.length==0){
					/*alert('Preencha o campo nome');*/
					document.contato.mail.style.background='red';
					document.contato.mail.focus();
					return false;
				}
				
				document.contato.msg.style.background='#009900';			
				if (document.contato.msg.value.length==0){
					/*alert('Preencha o campo nome');*/
					document.contato.msg.style.background='red';
					document.contato.msg.focus();
					return false;
				}
			return true;
		}

