
function show_image(image, width, height)
{
	popup = window.open("image","","width=" + width + ",height=" + height);
	doc = popup.document; 
	//_debug_console.document.write("<HTML><TITLE>ArachnID Template Debug Console</TITLE>");
  doc.write('<html><head><title>Powiększenie zdjęcia</title>');
  doc.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />');
  doc.write('</head><body style="margin:0px">');
  doc.write('<img src="' + image + '" style="cursor:pointer;" onclick="window.close()" />');
  doc.write('</body></html>');
	doc.close();


  return false;
}
