function ShowBigPicture(picture_index,width,height)
		{
			{
                                tx=200;
                                ty=0;
                                width=width+25;
                                height=height+25;
				NewWindow=window.open('', '','width='+width+',height='+height+',toolbar=no,top='+ty+',left='+tx+',directories=no,menubar=no,locations=no,status=no,scrollbars=yes,resizable=yes,fullscreen=no');
				NewWindow.document.open();

                NewWindow.document.writeln("<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-2\" /></head><body style=\"margin: 0px; font-family:Arial, Helvetica, sans-serif; font-size:11pt; background-color:#ffffff\">");
				NewWindow.document.writeln("<table width=100% height=100% style=\"font-family:Arial, Helvetica, sans-serif; font-size:11pt; background-color:#ffffff\">");
				NewWindow.document.writeln("<tr><td valign=center align=center>\n<a href=\"javascript:window.close();\"><img src=\""+pictures[picture_index]+"\" border=0></a></td></tr>");
				NewWindow.document.writeln("<tr><td align=center style=\"font-family:Arial, Helvetica, sans-serif; font-size:11pt; background-color:#ffffff\"><a href=\"javascript:window.close();\"></a>\n</td></tr>");
				NewWindow.document.writeln("</table>");
				NewWindow.document.writeln("</body>");
				NewWindow.document.close();
				NewWindow.focus();


			}
			return;
		}
