	//opens popup with enlarged image
	function showImage(url) {
		 width = 427;
		 height = 320;
		 /*try {
		  if (popup != null) popup.focus();
		 }catch(exception){}*/
		 name = url.substring(4, url.length - 4);
		 params = 'width=' + width + ', height=' + height + ', scrollbars=no, location=no, menubars=no, resizable=no';
		 popup=window.open("", "Image", params);
		 popup.document.write("<html>");
		 popup.document.write("<head>");
		 popup.document.write("<title>" + name + "</title>");
		 popup.document.write("</head>");
		 popup.document.write("<a href='javascript:window.close()'>");
		 popup.document.write("<body topmargin='0' leftmargin='0'>");
		 popup.document.write("</a>");
		 popup.document.write("<img src='" + url + "' border=0>");
		 popup.document.write("</body></html>");
		 popup.document.close();
		 popup.focus();
	}
