function link(photo)
{
	tWin =  document.open();

	tWin.write("<html><head>");
	tWin.write("</head><body topmargin='0' leftmargin='0' bgcolor='black'>");
	tWin.write("<p align='center'>");
	tWin.write("<img src='" + photo + "'>");

	tWin.write("</center></body></html>");

	tWin.close();
}
