  /* -------------------------------------------------------
   :: popup.js :: Pop-up windows
   															
  -------------------------[ (c)2001 nataniel@rpg.pl ]--- */

function popup(fileName) {
	window.open(fileName, 'popup', 'toolbar=no, scrollbars=auto, directories=no, status=no, menubar=no, resizable=no, width=400, height=510, screenX=250, screenY=100');
}

function popupXY(fileName, x, y) {
	window.open(fileName, 'popup', 'toolbar=no, scrollbars=yes, directories=no, status=no, menubar=no, resizable=no, width='+x+', height='+y+', screenX=250, screenY=100');
}

function popup2XY(fileName, x, y) {
	window.open(fileName, 'popup', 'toolbar=no, scrollbars=no, directories=no, status=no, menubar=no, resizable=no, width='+x+', height='+y+', screenX=250, screenY=100');
}

function popImage(fileName) {
    img = new Image;
    img.src = fileName;
    
    window.open(fileName, 'img', 'toolbar=no, scrollbars=no, directories=no, status=no, menubar=no, resizable=no, width='+(img.width+20)+', height='+(img.height+30));
}