<!--
function pop_up_picture(imageType,imageName,imageWidth,imageHeight,alt,posLeft,posTop) {
	screenh = window.screen.height;
screenw = window.screen.width;
posLeft = (screenw-imageWidth)/2;
posTop = (screenh-imageHeight)/2;
theWindow = window.open("","theWindow","width="+imageWidth+",height="+imageHeight+",scrollbars=no,left="+posLeft+",top="+posTop);
	theWindow.document.open();
	theWindow.document.write('<html><title>'+alt+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">');
	theWindow.document.write('<img src="'+imageName+'" width='+imageWidth+' height='+imageHeight+' alt="'+alt+'" onClick="javascript:window.self.close();" galleryimg="no">');
	theWindow.document.write('</body></html>');
	theWindow.document.close();
	theWindow.focus()
}
//-->
