function showPicture(pictureToShow, windowTitle)
{
	PicWin=window.open("","Screenshot",'status=0,scrollbars=no,resizable=yes,width=100,height=100,screenX=10,screenY=10,top=10,left=10');
	PicWin.document.open();
	PicWin.document.writeln('<html><head><title>' + windowTitle + '</title></head>');
	PicWin.document.writeln('<body topmargin="0" onload="this.focus()" bgcolor="#DEE6EF" leftmargin="0" link="#205A9C" vlink="#205A9C">');
	PicWin.document.writeln('<table border="0" width="100%" height="100%"><tr><td align="center" valign="middle">');
	PicWin.document.writeln('<img onLoad="window.opener.resizeWindow(50,140,100);" border="1" src="'+ pictureToShow +'">');
	PicWin.document.writeln('</td></tr>');
	PicWin.document.writeln('<tr><td align="center"><a style="font-size:10px;font-family:verdana;" href="javascript:this.close()">[ Close window ]</a></td></tr></table></body></html>');
	PicWin.document.close();
}
function resizeWindow(Hborder, Vborder, millisecs)
{	
	setTimeout("PicWin.resizeTo(PicWin.document.images[0].width + " + Hborder + ", PicWin.document.images[0].height + " + Vborder + ");", millisecs);
}

