function trackingCall(spotId, linkurl) {
    $.get("/de.aspx/Proxy/TrackingspotRedirect/", {spotId: spotId}, function (data) {
        if (data != null) {
            location.href = data;
       } else {
            location.href = linkurl;
        }
     });
 }