function images(picname,width,height,text,explain)
	{
	UusiIkkuna=open("","displayWindow","width=" + width + ",height=" + height + ",status=no,toolbar=no,menubar=no");
	// open
	UusiIkkuna.document.open();
	// new
	UusiIkkuna.document.write("");
	UusiIkkuna.document.write("<html><head><title>The Gambit</title></head>");
	UusiIkkuna.document.write("<body bgcolor=black marginheight=0 marginwidth=0 topmargin=0 leftmargin=0>");
	UusiIkkuna.document.write("<CENTER>");
	UusiIkkuna.document.write("<A HREF='javascript:close()'><IMG src=" + picname + " border=0></A>");
	UusiIkkuna.document.write("<BR><FONT FACE=verdana SIZE=1 COLOR=#cc9933>");
	UusiIkkuna.document.write("<B>"+ text +"</B><BR>");
	UusiIkkuna.document.write(""+ explain +"<BR>");
	UusiIkkuna.document.write("</body></html>");
	// close
	UusiIkkuna.document.close();  
}
