﻿function pessoaTipo(){
	if(document.getElementById('pessoaFisica').checked == true){
		document.getElementById('fisica').style.display = 'block';
		document.getElementById('juridica').style.display = 'none';
	}else{
		document.getElementById('fisica').style.display = 'none';
		document.getElementById('juridica').style.display = 'block';
	}
}

function openPopUp() {
	pWidth = "400";
	pHeight = "350";
	window.open('/cadastro.php','page','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width='+pWidth+',height='+pHeight);
}
