<!--NOEDIT-->
<!--
function showPic( frameTitle,
                  frameWidth,
                  frameHeight,
                  picTitle,
                  picSrc,
                  picWidth,
                  picHeight,
                  picCaption )
{
        var _ie = (navigator.userAgent.indexOf("MSIE") > 0);
        var picFrame = null;

//      if (_ie) {}

        picFrame = window.open("", frameTitle,
           "toolbar=no,location=no,directories=no,status=no," +
           "menubar=no,scrollbars=no,resizable=yes,copyhistory=no," +
           "width=" + frameWidth + ",height=" + frameHeight);

        // Build the html document for this frame
        picFrame.document.open();

        picFrame.document.writeln("<HTML>");
        picFrame.document.writeln("<HEAD>");
        picFrame.document.writeln("<TITLE>" + picTitle + "</title>");
        picFrame.document.writeln("</head>");
        
        picFrame.document.writeln("<BODY BGCOLOR=white TEXT=\"#006666\" LINK=peru BGEND>");

        picFrame.document.writeln("<P ALIGN=center>");
        picFrame.document.writeln("<FONT FACE=\"Arial, Helvetica\">");
        picFrame.document.writeln("<IMG SRC=\"" + picSrc + "\" HEIGHT=" + picHeight + " WIDTH=" + picWidth + "><BR>");
        picFrame.document.writeln( "<B>" + picTitle + ":</b> " + picCaption );
        picFrame.document.writeln( "<BR><BR><HR><BR><BR>" );
        picFrame.document.writeln( "</font>" );

        picFrame.document.writeln("</body>");
        picFrame.document.writeln("</html>");
        picFrame.document.close();
}

//-->
<!--/NOEDIT-->
