
			function largeImage(imageURL,width,height)
			{
					if (! width)
					{
						width = globalDefaultWidth;
					}
					if (! height)
					{
						height = globalDefaultHeight;
					}	
					var theWnd = window.open('','theWnd','resizable,width=' + width + ', height=' + height);
					if (theWnd != null)
					{
						theWnd.document.writeln('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">');
						theWnd.document.writeln('<HTML><HEAD><TITLE>Illustration</TITLE></HEAD><BODY>');
						theWnd.document.writeln('<DIV ALIGN="CENTER"><A HREF="javascript:self.close();"><IMG SRC="' + imageURL + '" ALT="Click to close" ALIGN="BOTTOM" BORDER="0"><BR><IMG SRC="images/close.gif" ALT="Click to close" BORDER="0" VSPACE="5"></A></DIV>');
						theWnd.document.writeln('</BODY></HTML>');
					} 
			}