﻿function popup() {

    $('div#overlay').css('width', $(window).width() - 140);
    $('div#overlay').css('height', $(document).height());
    $('div#overlay').show();
    var windowwidth = $(window).width() - 140;
    
    var top = $(document).scrollTop();
    $('div#popDiv').css('left', (windowwidth/2) - 440);
    $('div#popDiv').css('top', top + 100);
    $('div#popDiv').show();
}

function closepopup() {
    $('div#popDiv').hide();
    $('div#overlay').hide();

}

function popup_small() {

    $('div#overlay').css('width', $(window).width() - 140);
    $('div#overlay').css('height', $(document).height());
    $('div#overlay').show();
    var windowwidth = $(window).width() - 140;

    var top = $(document).scrollTop();
    $('div#popDiv').css('left', (windowwidth / 2) - 240);
    $('div#popDiv').css('top', top + 100);
    $('div#popDiv').show();
}

