function limpaChave(){
	if (document.cadastro.name.value == 'Seu Nome'){
		document.cadastro.name.value = '';
	}
}
function voltaChave(){
	if (document.cadastro.name.value == ''){
		document.cadastro.name.value = 'Seu Nome';
	}
}
function limpaChave2(){
	if (document.cadastro.email.value == 'Seu E-mail'){
		document.cadastro.email.value = '';
	}
}
function voltaChave2(){
	if (document.cadastro.email.value == ''){
		document.cadastro.email.value = 'Seu 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';
	}
}