﻿
function popup(container) {

    $('div#overlay').css('width', $(window).width());
    $('div#overlay').css('height', $(document).height());
    $('div#overlay').show();
    var windowwidth = $(window).width();

    var top = $(document).scrollTop();
    $('div#' + container).css('left', (windowwidth / 2) - 440);
    $('div#' + container).css('top', top + 40);
    $('div#' + container).show();
}


function popup_small() {

    $('div#overlay').css('width', $(window).width());
    $('div#overlay').css('height', $(document).height());
    $('div#overlay').show();
    var windowwidth = $(window).width() - 140;
    var windowheight = $(window).height()/4;
    var top = $(document).scrollTop();
    $('div#popDiv3').css('left', (windowwidth / 2) - (850/2) + 50);
    $('div#popDiv3').css('top', top + windowheight);
    $('div#popDiv3').show();
}

function closepopup(container) {
    $('div#' + container).hide();
    $('div#overlay').hide();

}

