
function wind(width, height, src)
{
	var left = (screen.availWidth-width)/2;
	var top = (screen.availHeight-height)/2;

	var open = window.open('', '', 'width='+width+', height='+height+', left='+left+', top='+top+', scrollbars=no, resizable=no, menubar=no, toolbar=no, location=no, directories=no, status=no');
	open.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"\n');
	open.document.write('   "http://www.w3.org/TR/html4/loose.dtd">\n');
	open.document.write('<html>\n');
	open.document.write('<head>\n');
	open.document.write('<meta http-equiv="Content-type" content="text/html; charset=utf-8">\n');
	open.document.write('<meta http-equiv="Content-Language" content="pl">\n');
	open.document.write('<meta http-equiv="Expires" content="0">\n');
	open.document.write('<meta http-equiv="imagetoolbar" content="no">\n');
	open.document.write('<title> Galeria (kliknij na zdjęciu, aby zamknąć okno) </title>\n');
	open.document.write('<meta name="Author" content="Flatten Image">\n');
	open.document.write('</head>\n');
	open.document.write('<body style="margin: 0px; padding: 0px; background-color: #555555; overflow: auto; text-align: center;">\n');
	open.document.write('<a href="javascript:this.close()"><img style="margin: 0px; padding: 0px; border: none;" src="'+src+'" alt="&copy; Flatten Image"></a>\n');
	open.document.write('</body>\n');
	open.document.write('</html>\n');
}


function fullwindow(x,y,url)
{
	html= '<html><head><title> Galeria (kliknij na zdjęciu, aby zamknąć okno) </title></head>';
	html= html + '<body style="margin: 0px; padding: 0px; background-color: #555555; text-align: center;">';
	html= html + '<a href="javascript:this.close()"><img style="margin: 0px; padding: 0px; border: none;" src="'+url+'" alt="&copy; Flatten Image"></a>';
	okno = 'width=' + x + ',height=' + y + ',toolbar=no,left='+(screen.availWidth-x)/2+',top='+(screen.availHeight-y)/2+',status=no,scrollbars=no,scrollbars=no, resizable=no, menubar=no, toolbar=no, location=no, directories=no, status=no';
	with(window.open('' , '', okno))
	{
  		
	
  		document.open();
  		document.write(html);
  		document.close();
		focus();
	}
}
