
	     var bigpicWin = null;
	     
	     function showbigimage(url, picwidth, picheight, description)
	     {
	     if (!bigpicWin || bigpicWin.closed)
	     {
	     usrwidth = screen.width;
	     usrheight = screen.height;
	     
	     winwidth = picwidth;
	     winheight = picheight;
	     
	     var X = (usrwidth - winwidth) / 2;
	     var Y = (usrheight - winheight) / 2;
	     
	     properties = "toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,width="+winwidth+",height="+winheight+",";
	     
	     checkie = navigator.appName.indexOf("icrosoft");
	     if (checkie == -1)
	     {
	     properties = properties+"screenX="+X+",screenY="+Y;
	     }
	     else
	     {
	     properties = properties+"left="+X+",top="+Y;
	     }
	     
	     bigpicWin = window.open('','bigpicWin',properties);
	     
	     bigpicWin.document.open();
	     bigpicWin.document.write('<html><head>');
			     bigpicWin.document.write('<title>'+description+'</title>');
			     bigpicWin.document.write('<style type="text/css">/*<![CDATA[*/body{margin:0;}img{border:0;margin:0;}html{margin:0;padding:0;}/*]]>*/</style>');
			     bigpicWin.document.write('</head>');
		     bigpicWin.document.write('<body>');
			     bigpicWin.document.write('<a href="JavaScript:self.close()"><img src="'+url+'"></a>');
				     bigpicWin.document.write('</body>');
			     bigpicWin.document.write('</html>');
		     bigpicWin.document.close()
		     
		     bigpicWin.focus();
		     }
		     else
		     {
		     bigpicWin.focus();
		     }
		     }