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.sobrenome.value == 'sobrenome'){
		document.cadastro.sobrenome.value = '';
	}
}
function voltaChave2(){
	if (document.cadastro.sobrenome.value == ''){
		document.cadastro.sobrenome.value = 'sobrenome';
	}
}


function limpaChave3(){
	if (document.cadastro.aniversario.value == 'aniversario'){
		document.cadastro.aniversario.value = '';
	}
}
function voltaChave3(){
	if (document.cadastro.aniversario.value == ''){
		document.cadastro.aniversario.value = 'aniversario';
	}
}

function limpaChave4(){
	if (document.cadastro.email.value == 'e-mail'){
		document.cadastro.email.value = '';
	}
}
function voltaChave4(){
	if (document.cadastro.email.value == ''){
		document.cadastro.email.value = 'e-mail';
	}
}



/*function popup(){
window.open('festas.html','popup','width=250,height=333,scrolling=auto,top=200,left=200')
}*/
