/*-----------------------------------------
	plik: 'funct.js'
	data utw.: 2005.03.12  20.28
	data ost. modyf.:
	autor: Tomasz Ryczanik
  -----------------------------------------*/


function display_foto(file,title,width,height) {
	win = window.open('',"popup",'width=' + width + ',height=' + height + ',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,left,top'); win.document.write('<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><link href="lib/main.css" type="text/css" rel="stylesheet" /><title>'+ title +'</title></head><body><table width="'+ width +'" cellpadding="0" cellspacing="0"><tr><td width="'+ width +'" height="'+ height +'"><a href="javascript:window.close()"><img src="' + file + '" alt="" border="0" /></a></td></tr></table></body></html>'); win.document.close();
}

