﻿$j(function() {

    // Enable post to Apsis newsletter and registers the event in analytics database.
    $j("#searchbuttonfront").click(function() {
        $j("#mainform").attr("action", "http://www.anp.se/processSubscriptionForm.asp");
        $j("#mainform").attr("target", "_blank");

        var subscriberName = $j(".in_subscriberName").val();
        var email = $j(".in_email").val();
        $j.ajax({
            type: "POST",
            url: "/layouts/Analytics/Ajax.aspx/RegisterNewsletterSignup",
            data: "{subscriberName:'" + subscriberName + "', email:'" + email + "'}",
            contentType: "application/json; charset=utf-8",
            dataType: "json"
        });
    });
});
