
			
			function nowe_okno(url, w, h, tytul, img) 
{
 		var style = "body{background:#ffffff; margin:0}";
 		style = style + ".rama {text-align:center; margin-top:1em;}";
		style = style + "a img { border:0 } "; 

    var winl = (screen.width - w) / 2;
    var wint = (screen.height - h) / 2;
		var win;
		w=w+15;
		h=h+45;		
    
		
		
		if(img=='img')
		{
			win = window.open('','','left=' + winl + ',top=' + wint + ',width=' + w + ',height=' + h + ',resizable=1,scrollbars=yes,menubar=no' );
			win.resizeTo(w,h);
			win.document.write('<html><head><title>' + tytul + '</title><style type="text/css">'+ style +'</style></head><body><div id="rama" ><a href="javascript:window.close()"><img src="'+ url +'" alt=""></a></div></body></html>');
		}
		else
		{
			win = window.open(url,tytul,'left=' + winl + ',top=' + wint + ',width=' + w + ',height=' + h + ',resizable=1,scrollbars=yes,menubar=no' ); 
			win.resizeTo(w,h);
		}
				
		win.document.close();
}

function show_colour(zdj,x,y)
{
	if(x==0)x=500;
	if(y==0)y=300;
	foto_=document.getElementById('foto');
	//alert (foto_);
	foto_.style.backgroundImage='url(zdj_produkty/' + zdj + ')';
	foto_.onclick=function(){ nowe_okno('zdj_produkty/' + zdj, x, y,'', 'img' ); }
}

