function link(photo)
{
	tWin = document.open();

	tWin.write("<html><head>");
	tWin.write("<script language='JavaScript'> ");
	tWin.write("function click() {if (event.button==2) ");
	tWin.write("{alert('Please respect the copyright laws and do not attempt to save images.')}} ");
	tWin.write("document.onmousedown=click </script> ");
	tWin.write("</head><body topmargin='0' leftmargin='0' bgcolor='white'>");
	tWin.write("<p align='center'>");
	tWin.write("<img src='" + photo + "'></center></body></html>");

	tWin.close();
}