function DisplayPicture(FileName,PhotoCaption,PhotoCredit)
{
        var wnd = window.open("", "newWindow", "alwaysraised=yes,dependent=yes,hotkeys=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,titlebar=yes,width=200,height=200");
        wnd.document.writeln('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">');
        wnd.document.writeln("<HTML>");
        wnd.document.writeln("<HEAD>");
        wnd.document.writeln("<TITLE>"+PhotoCredit+"</TITLE>");
        wnd.document.writeln("<SCRIPT>");
        wnd.document.writeln("function setSize()");
        wnd.document.writeln("{");
        wnd.document.writeln("var img = window.document.images[0];");
        wnd.document.writeln("window.resizeTo(img.width+0, img.height+55);");
        wnd.document.writeln("}");
        wnd.document.writeln("<\/SCRIPT>");
        wnd.document.writeln('<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">');
        wnd.document.writeln('<meta name="resource-type" content="document">');
        wnd.document.writeln("</HEAD>");
        wnd.document.writeln('<BODY bgcolor="#FFFFFF" marginheight=0 marginwidth=0 topmargin=0 leftmargin=0 text="#000000" link="#000000" vlink="#000000" alink="#000000" onBlur="window.close()" onLoad="setSize();">');
        wnd.document.writeln('<IMG SRC="'+FileName+'" BORDER=1><br><table width=100%><tr><td><font size="1" face="Arial, Helvetica, sans-serif">'+PhotoCaption+'</font></td></table>');
        wnd.document.writeln("</BODY>");
        wnd.document.writeln("</HTML>");
        wnd.document.close();
        wnd.onBlur = "window.close();";
        wnd.focus();
}
// -->

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}