function link(photo)
{
	tWin = document.open();

	tWin.write("<html><head>");
	tWin.write("<script language='JavaScript'> ");
	tWin.write("document.onmousedown=click;");
	tWin.write("var message='Please respect the copyright laws and do not attempt to save images.';");
	tWin.write("function click(e) {");
	tWin.write("if (document.all) {");
	tWin.write("if (event.button == 2) {");
	tWin.write("alert(message);");
	tWin.write("return false;");
	tWin.write("}}");
	tWin.write("if (document.layers) {");
	tWin.write("if (e.which == 3) {");
	tWin.write("alert(message);");
	tWin.write("return false;");
	tWin.write("}}}");
	tWin.write("if (document.layers) {");
	tWin.write("document.captureEvents(Event.MOUSEDOWN);");
	tWin.write("}");
	tWin.write("document.onmousedown=click; </script> ");
	tWin.write("<link rel='stylesheet' href='link.css'>")
	tWin.write("</head><body topmargin='0' leftmargin='0' bgcolor='white'>");
	tWin.write("<div align='center'>")
	tWin.write("<center> <table border='0' cellpadding='3' cellspacing='3'><tr>")
    	tWin.write(" <td></td> <td>")
	tWin.write("<img src='" + photo + "'>");
	tWin.write("</td> </tr></table></center></div></body></html>")
	tWin.close();
}