function limpaChave(){
	if (document.cadastro.name.value == 'nome'){
		document.cadastro.name.value = '';
	}
}
function voltaChave(){
	if (document.cadastro.name.value == ''){
		document.cadastro.name.value = 'nome';
	}
}
function limpaChave2(){
	if (document.cadastro.email.value == 'e-mail'){
		document.cadastro.email.value = '';
	}
}
function voltaChave2(){
	if (document.cadastro.email.value == ''){
		document.cadastro.email.value = 'e-mail';
	}
}


function limpaChave3(){
	if (document.myform.pesquisa.value == 'pesquisa'){
		document.myform.pesquisa.value = '';
	}
}
function voltaChave3(){
	if (document.myform.pesquisa.value == ''){
		document.myform.pesquisa.value = 'pesquisa';
	}
}
