// JavaScript Document

var tam=12;
                    function FonteAcessivel(tipo){
                    if (tipo=="maior"){        
                        tam+=1;
                    }else{
                        tam-=1;
                    } 
                        document.getElementById('texto').style.fontSize=tam+'px';
						 document.getElementById('texto').style.lineHeight='none';
                        
                    }
					
					
					
					
function enviardados(){
if(document.mailform.nome.value=="" || document.mailform.nome.value.length < 3 || document.mailform.nome.value=="Nome")
{
alert( "Por favor preencha o campo Nome correctamente!" );
document.mailform.nome.focus();
return false;
}


if( document.mailform.email.value=="" || document.mailform.email.value.indexOf('@')==-1 || document.mailform.email.value.indexOf('.')==-1 )
{
alert( "Por favor preencha o campo Email correctamente!" );
document.mailform.email.focus();
return false;
}


return true;
}

