function go_to_private_page() {
  window.location = 'http://www.cardume.pt/?ins'; 
}

$(document).ready(function () {
    $('#login_form').modal();
    $("#jaestouregistado").click(function () {
		$.modal.close();
	});


    $("#btnSubmit").click(function () {

        var str = $('form').serialize();  
        //var teste = "cidade=" + $('#cidade_input').attr('value') + "&mail=" + $('#mail_input').attr('value') + "&pid=" + $('#pid').attr('value') + "&channelid=" + $('#channelid').attr('value') + "&adtypeid=" + $('#adtypeid').attr('value') + "&sid=" + $('#sid').attr('value') + "&politica=" + $('#politica').attr('value');
        
        $.ajax({
            type: "POST",
            url: "pids.php?" + str,
            data: str,
            success: function (msg) {

                if (msg == 'Por favor seleccione uma cidade / Introduza um e-mail v&aacute;lido') {
                    var login_response = msg;
                    $('#login_response').html(login_response);
                }
                else if (msg == 'J&aacute; se encontra inscrito nessa cidade!') {
                    var login_response = msg;
                    $('#login_response').html(login_response);
                }
                else if (msg == '&Eacute; necess&aacute;rio aceitar os termos de protec&ccedil;&atilde;o de dados e utiliza&ccedil;&atilde;o do servi&ccedil;o.') {
                    var login_response = msg;
                    $('#login_response').html(login_response);
                }
                else {
                    var login_response = 'Obrigado pela sua inscri&ccedil;&atilde;o! Aproveite os descontos que temos para si!' + msg;
                    $('#login_response').html(login_response);
                    window.setTimeout(function () { this.go_to_private_page.apply(this); }, 3000);
                } 
            }
        });
        return false;
    });
});


