// JavaScript Document
function LeuContrato(destino)
{
	x = document.FrmCad;
	if (!(x.simcontrato.checked))
	{
		window.alert("Para efetuar o cadastro, é necessário aceitar o contrato, Obrigado!");
		return false;
	}
	if (destino == 'PF') destino = 'CadPF.asp';
	if (destino == 'PJ') destino = 'CadPJ.asp';
	if (destino == 'PL') destino = 'CadPL.asp';
	x.action = destino;
	x.method = "post";
	x.submit();		
}

