﻿function startStopScroll(stop) {
    if (stop == true) {
        document.body.scroll = "no";
        document.body.style.overflow = 'hidden';
        scroll(0, 0);
    }
    else {
        document.body.scroll = "yes";
        document.body.style.overflow = 'scroll';
    }
}

function gotoHome() {
    //if(window.location.toString().indexOf("start_1.aspx") >= -1)
    $.fancybox.close();
    //else
    //window.location = "www.samenlevingsopbouw-oost-vlaanderen.be";
    return false;
}

$(document).ready(function() {

    var popup = document.getElementById("popup")

    $("a.iframe").fancybox({
        'autoDimensions': false,
        'autoScale': false,
        'transitionIn': 'fade',
        'transitionOut': 'fade',
        'speedIn': 1000,
        'speedOut': 500,
        'overlayShow': true,
        'width': 950,
        'height': 582,
        'scrolling': 'no',
        'showCloseButton': true,
        'hideOnContentClick': false,
        'onClosed': function() {
            //startStopScroll(false);
        },
        'onStart': function() {
            //startStopScroll(true);
        }
    });
    
    if (popup != null) {
        $("a#popup").trigger('click');
        //startStopScroll(true);
    }
});
