/**
 * Funkcje wspólne dla całego serwisu
 * (c) CodeLine 2004
 * 
 * $Id: main.js,v 1.1 2004-04-29 08:46:27 mberkan Exp $
 */
 
function openPopupImage(name, width, height, link) {
  window.open(link, name,'width='+width+',height='+height+',resizable=no,'+
    'scrollbars=no,menubar=no,personalbar=no,toolbar=no,no=yes');
}
function openPrintWindow(name, width, height, link) 
{
  window.open(link, name,'width='+width+',height='+height+',resizable=no,'+
    'scrollbars=yes,menubar=no,personalbar=no,toolbar=no');
}
