function SendTrackingInforamtion(sUrl)
{
    var a = new Image();
    a.src = sUrl;
}

function TrackAndRedirect(sRedirectUrl,sTrackingUrl ){

SendTrackingInforamtion(sTrackingUrl);
window.location.href = sRedirectUrl;
}