<!--

	function doNothing() {
		return;
	}

	function show_picture( sImgName, iWidth, iHeight ) {
	    var sURL = "./images/" + sImgName + "_" + iWidth + "x" + iHeight + ".jpg";
	    iWidth += 25; iHeight += 25;
	    var h = window.open( sURL, "ZOOM", "'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=" + iWidth + ",height=" + iHeight + "'");
	    return true;
	}

// -->