

function zoom(szerokosc,wysokosc,adres) {
	szerokosc+=10;
	wysokosc+=10;
	//if (ie)
	{
	NewWindow=window.open('', '','width='+szerokosc+',height='+wysokosc+',toolbar=no,directories=no,menubar=no,locations=no,status=no,scrollbars=no,resizable=no,fullscreen=no,top=50,left=50');
	NewWindow.document.open();
	NewWindow.document.writeln("<html>\n<head>\n<title>Zoom</title></head>");
	NewWindow.document.writeln("<body leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">");
	NewWindow.document.writeln("<table width=\"100%\" height=\"100%\" border=\"0\">");
	NewWindow.document.writeln("<tr><td valign=\"center\" align=\"center\">\n<a href=\"javascript:window.close();\"><img src=\""+adres+"\" border=\"0\"></a></td></tr>");
	NewWindow.document.writeln("</table>");
	NewWindow.document.writeln("</body>\n</html>\n");
	NewWindow.document.close();
	NewWindow.focus();
	}
	return;
	}

function popUp(URL) {
var width=900;
var height=600;
id = "artwork";
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width="+width+",height="+height+",left = "+(screen.width-width)/2+",top = "+(screen.height-height)/2+"');");
}

function dodaj(tytul, adres) { 
//FireFox 
if (window.sidebar) { 
window.sidebar.addPanel(tytul, adres, ""); 
//IE
 } else if (window.external) { 
 window.external.AddFavorite(adres, tytul); 
 //Opera 
 } else if (window.opera && window.print) { 
 var a = document.createElement('a'); 
 a.setAttribute('href', adres); 
 a.setAttribute('title', tytul); 
 a.setAttribute('rel','sidebar'); 
 a.click(); } 
 } 



