function foto(url) 
{
new_window = window.open("","okno","width=460,height=330,fullscreen=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes");
new_window.focus();
new_window.document.open();
new_window.document.write("<html><head><title>UKS Sparta - Grodzisk Mazowiecki</title></head>");
new_window.document.write("<body bgcolor=\"#ffffff\" leftmargin=\"0\" marginheight=\"0\" marginwidth=\"0\" topmargin=\"0\">");
new_window.document.write("<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" height=\"100%\">");
new_window.document.write("<tr>");
new_window.document.write("<td valign=\"middle\" align=\"center\"><img src="+url);
new_window.document.write(" border=\"0\"></a></td>");
new_window.document.write("</tr>");
new_window.document.write("</table>");
new_window.document.write("</body></html>");
  new_window.document.close();  
}

