function DisplayPicture(FileName,PhotoCaption,PageTitle)
{
	var wnd = window.open("", "newWindow", "alwaysraised=yes,dependent=yes,hotkeys=no,location=no,menubar=no,resizable=no,scrollbars=no,status=no,titlebar=yes,width=500,height=320");
	wnd.document.open("text/html", "replace");
	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>"+PageTitle+"</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+50, img.height+75);");
	wnd.document.writeln("}");
	wnd.document.writeln("<\/SCRIPT>");
	wnd.document.writeln('<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">');
	wnd.document.writeln('<meta http-equiv="imagetoolbar" content="no">');
	wnd.document.writeln('<meta name="resource-type" content="document">');
	wnd.document.writeln("</HEAD>");
	wnd.document.writeln('<BODY bgcolor="#A2AFBA" onBlur="window.close()" onLoad="setSize();">');
	wnd.document.writeln('<center><table><tr><td align="center"><img src="'+FileName+'" border="1" bordercolor="#000000" alt="Klicka på bilden för att stänga fönstret!"></td></tr></table></center>');
	wnd.document.writeln("</BODY>");
	wnd.document.writeln("</HTML>");
	wnd.document.close();
	wnd.onBlur = "window.close();";
	wnd.focus();
}