﻿var PrivacyWindow;
function ShowPrivacyStatement() {
    PrivacyWindow = dhtmlmodal.open('privacydiv', 'iframe', 'privacy.aspx', 'Privacy statement', 'width=600px,height=450px,center=1,resize=0,scrolling=0');
}

function PerformPostSnapActions() {
    ShowFirstAd();
}

function ShowFirstAd() {
    if (advs.length > 0) {

        $("#index-panel div img").attr("src", advs[0]).css("visibility", "visible");

        if (advs.length > 1)
            setInterval("ShowNextAd()", 2000);
    }
}

function ShowNextAd() {
    currentAdv++;
    if (currentAdv == advs.length) currentAdv = 0;

    $("#index-panel div img").transictionto({ destinationImage: advs[currentAdv] });
}
