
function noSpam(user,domain) {
	locationstring = "mailto:" + user + "@" + domain;
	window.location = locationstring;
}

function ShowPicture(obraz)
{
		NewWindow=window.open('', '','width='+670+',height='+600+',toolbar=no,directories=no,menubar=no,locations=no,status=no,scrollbars=no,resizable=yes,fullscreen=no');
		NewWindow.document.open();

		NewWindow.document.writeln("<html>\n<head>\n<title>Szkoła Podstawowa nr 95 w Krakowie\n</title>\n</head>");
		NewWindow.document.writeln("<body leftmargin=0 topmargin=0 rightmargin=0 bottommargin=0 style=\"font-family:Calibri; font-size:16px; background-color:#9C95BE; \">");

		NewWindow.document.writeln("<table width=100% height=100% background=\"images\/bg.jpg\" style=\"font-family:Calibri; font-size:16px; background-color:#9C95BE; \">");

		NewWindow.document.writeln("<tr><td valign=center align=center>\n<a href=\"javascript:window.close();\"><img src=\"images/"+obraz+"\" border=0></a></td></tr>");

		NewWindow.document.writeln("<tr><td align=center><a href=\"javascript:window.close();\" style=\"color: #001D88; font-weight: bold; font-size: 16px; text-decoration: none\">Zamknij okno</a>\n</td></tr>");

		NewWindow.document.writeln("</table>");
		NewWindow.document.writeln("</body>\n</HTML>\n");
		NewWindow.document.close();
		NewWindow.focus();
	return;
}


