function viewImage(image, width, height) {
	var thebase = parent.document.getElementsByTagName("base");
	ImageWindow=window.open('', '','width='+700+',height='+500+',toolbar=no,directories=no,menubar=no,locations=no,status=no,scrollbars=yes,resizable=yes,fullscreen=no');
	ImageWindow.document.open(); 
	ImageWindow.document.write("<HTML>\n<HEAD>\n<BASE href=\""+thebase[0].href+"\"><TITLE>FlashLook Image Viewer</TITLE>\n</HEAD>\n<BODY LEFTMARGIN=0 TOPMARGIN=0>\n<TABLE WIDTH=100% HEIGHT=100%>\n<TR><TD valign=center align=center>\n<IMG SRC="+image+"><BR>\n<A href=\"javascript:window.close();\" style='font-family:verdana; font-size:11px; text-variant: small-caps;'>Zamknij okno</A>\n</TD></TR>\n</TABLE>\n</BODY>\n</HTML>\n");
	ImageWindow.document.close(); 
	ImageWindow.focus(); 
}

