// JavaScript Document
function FormCadastro()
{
	document.getElementById('cadastro').style.display = 'block';
	document.getElementById('cadastro2').style.display = 'none';
	document.getElementById('Envia').style.display = 'none';
}
function FormCadastro2()
{
	document.getElementById('cadastro').style.display = 'none';
	document.getElementById('cadastro2').style.display = 'block';
	document.getElementById('Envia').style.display = 'block';
}