function DisplayPicture(FileName,PhotoCaption,PhotoCredit)
{
        var wnd = window.open("", "newWindow", "alwaysraised=yes,dependent=yes,hotkeys=no,location=no,menubar=no,resizable=no,scrollbars=yes,status=no,titlebar=yes,width=515,height=550");
        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('<META NAME="KOSO" 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);
}
