function valida01(){
	if (document.cadastro.nome.value == 'Nome completo' ) { 
	document.cadastro.nome.value = '';
	}
}
function valida02(){
	if (document.cadastro.email.value == 'Email para contato' ) { 
	document.cadastro.email.value = '';
	}
}
function valida03(){
	if (document.cadastro.telefone.value == 'Telefone com DDD' ) { 
	document.cadastro.telefone.value = '';
	}
}
function valida04(){
	if (document.cadastro.comentarios.value == 'Comentários ou dúvidas? Escreva aqui!' ) { 
	document.cadastro.comentarios.value = '';
	}
}
function valida05(){
	if (document.restrita.login.value == 'Login' ) { 
	document.restrita.login.value = '';
	}
}
function valida06(){
	if (document.restrita.senha.value == 'Senha' ) { 
	document.restrita.senha.value = '';
	}
}
