function showImage(path, descr) 
{
	//i1 = new Image;

	//i1.src = path;
	
	html = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" '+
 		'"http://www.w3.org/TR/html4/loose.dtd"> '+
 		'<html> '+
 		  '<head> '+
 		    '<title>CR-Corporation Picture Display</title> '+
 		    '<link rel="stylesheet" type="text/css" href="crstyle.css"> '+
		  '</head> '+
		'<body> '+
		  '<table> '+
		    '<tr><td align="center"> '+
			'<img src="'+path+'" border="0" name="CRimage" '+
		           'onLoad="window.resizeTo(document.CRimage.width+45,document.CRimage.height+120)"> '+
		    '</td></tr> '+
		    '<tr><td align="center">'+descr+'</td></tr> '+
		  '</table> '+
		'</body> '+
		'</html>';

	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');

	popupImage.document.open();
	popupImage.moveTo(('0'),('0'));
	popupImage.document.write(html);

	popupImage.document.close()

};

function showImageScroll(path, descr) 
{
	//i1 = new Image;

	//i1.src = path;
	
	html = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" '+
 		'"http://www.w3.org/TR/html4/loose.dtd"> '+
 		'<html> '+
 		  '<head> '+
 		    '<title>CR-Corporation Picture Display</title> '+
 		    '<link rel="stylesheet" type="text/css" href="crstyle.css"> '+
		  '</head> '+
		'<body> '+
		  '<table> '+
		    '<tr><td align="center"> '+
			'<img src="'+path+'" border="0" name="CRimage" '+
		           'onLoad="window.resizeTo(document.CRimage.width+70,document.CRimage.height+120)"> '+
		    '</td></tr> '+
		    '<tr><td align="center">'+descr+'</td></tr> '+
		  '</table> '+
		'</body> '+
		'</html>';

	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=1,resizable=1');

	popupImage.document.open();
	popupImage.moveTo(('0'),('0'));
	popupImage.document.write(html);

	popupImage.document.close()

};