﻿$(document).ready(function() {
    $('div.popup').prepend('<div><h3>SSD</h3><a class="popup_close" href="#">Close</a><div class="clear"></div></div>');
    
    $('a.popup').click(function(e) {
        e.preventDefault(); // Cancel the link behavior.
        showPopup($(this).attr('href'));
    });
});


function showPopup(popupId) {
    var id = "#popup_" + popupId;

    $('a.popup_close').click(function(e) {
        e.preventDefault(); // Cancel the link behavior.
        $('div.popup').fadeOut(250);
    });

    $(id).css("top", ($(window).height() - $(id).height()) / 2 + $(window).scrollTop() + "px");
    $(id).css('left', ($(window).width() - $(id).width()) / 2 + $(window).scrollLeft() + "px");

    $(id).fadeIn(500);
}


function popup(page, width, height) {
    var inst = "width=" + width + ",height=" + height + ",resizeable=yes,scrollbars=yes,menubar=yes";
    window.open(page, '', inst);
}
