<!-- Pictures without Captions
var picwindow
function showEnlg(picurl,width,height) {
	//This section makes changes to styles for Netscape Browser display
	if (navigator.appName == "Netscape") {        
	picwindow = window.open('', 'pic', 'resizable,height=' + (height) + ',width=' + (width));	
	picwindow.document.write('<HTML><HEAD><TITLE>Image</TITLE><STYLE TYPE="text/css">BODY {background: #99CCCC url(' + picurl + ') no-repeat fixed; } </STYLE></HEAD>');	
	picwindow.document.write('<BODY onBlur="window.close()">');
	picwindow.document.write('</BODY></HTML>');
	document.close();
	return false;
	} else {
	picwindow = window.open('', 'pic', 'resizable,height=' + (height) + ',width=' + (width));
	picwindow.moveTo(0,0);
	picwindow.document.write('<HTML><HEAD><TITLE>Image</TITLE><STYLE TYPE="text/css">BODY, IMG, P {margin: 0px};</STYLE></HEAD>');
	picwindow.document.write('<BODY BGCOLOR=#99CCCC onBlur="window.close()">');
        picwindow.document.write('<IMG SRC="' + picurl + '">\n');
	picwindow.document.write('</BODY></HTML>');
	picwindow.document.close();
	return false;
	}
}
//-->
