$(function(){
   $('#frmCadastroEsq').submit(function(){
	   
	  $.ajax({
		 //url:'unidades/action/cad-cadastro',  LINHA ORIGINAL - NAO TA ACHANDO O METODO cadCadastro no arquivo unidades.class.php 
		 url:'unidades/'+$("#cad_alias").val()+'/cad-cadastro',
		 type: 'POST',
		 data: ({
			cad_nome: $("#cad_nome").val(),
			cad_email: $("#cad_email").val(),
			cad_tel: $("#cad_tel").val(),
			cd_unidade: $("#cd_unidade").val(),
			cad_est: $("#cad_est").val(),
			cad_cid: $("#cad_cid").val()
		 }),
		 success: function(msg){
			$("#frmCadastroEsq").html("<h3 style='font-size:18px;text-align:center;color:#FFF;font-weight:bold;border:none;margin:20px auto 0 auto'>"+msg+"</h3>");
		 },
		 error: function(){
			$("#cad_erro").html('Ocorreu um erro no envio.');
			$("#cad_erro").show();
		 }
	  });

	  return false;
   });
});

function openPopup(page, width, height)
{
	window.open(page, "mywindow", "location=0,status=0,scrollbars=0,width="+width+",height="+height+"");
}

