$(function(){
    $('div.under-article p.print a').click(function(){
        window.open($(this).attr('href'), '', 'toolbar=no,menubar=no,scrollbars=yes,resizable=yes,height=550,width=640,top='+(window.screen.availHeight/2-(700/2))+',left='+(window.screen.availWidth/2-(710/2)));
        return false;
    });
    
    $('div.gallery div.photo a').click(function(){
        window.open($(this).attr('href'), '', 'toolbar=no,menubar=no,scrollbars=no,resizable=no,height=552,width=662,top='+((screen.height-700)/2)+',left='+((screen.width-720)/2));
        return false;
    });
});