

<!-- // new window opening


id = 0;

function jpgOpen(rWidth, rHeight, jpgFile)
{
	obName = "jpgWindow"+id
	s="toolbar=no,location=no,scrollbars=no,width="+rWidth+",height="+rHeight+",resizable=no,top=100,left=100"
	jpgWindow = window.open('', obName, s)
	jpgWindow.document.write("<html>\n")
	jpgWindow.document.write("<head>\n")
	jpgWindow.document.write(" <title>Poznan Site</title>\n")
	jpgWindow.document.write(" <link rel=stylesheet type=\"text/css\" href=\"style.css\">\n")
	jpgWindow.document.write("<script language=javascript>\n")

	jpgWindow.document.write("close_on = new Image();\nclose_on.src = \"./pic/closewind.gif\"\nclose_off = new Image();\nclose_off.src = \"./pic/closewin.gif\"\n")
	jpgWindow.document.write("function select1(imgName) { imgOn = eval(imgName + \"_on.src\");\ndocument[imgName].src = imgOn;\nwindow.status = imgName;\nsetTimeout(\"erase1()\",3000);\n}\n")
	jpgWindow.document.write("function unselect1(imgName) {\nimgOff = eval(imgName + \"_off.src\");\ndocument[imgName].src = imgOff;\n}\n")
	jpgWindow.document.write("function erase1() {\nwindow.status=\"\";\n}\n")
	jpgWindow.document.write("</script>\n");
	jpgWindow.document.write("</head>\n")


	//jpgWindow.document.write("<script language=\"JavaScript\" src=\"menu.js\"></script>")
	jpgWindow.document.write("<body bgcolor=\"#FFCE63\">\n")
	jpgWindow.document.write(" <center><table cellpadding=4 cellspacing=6>\n")
	jpgWindow.document.write("  <tr><td>\n")
	jpgWindow.document.write("   <center><img src=\""+jpgFile+"\"></center>\n")
	jpgWindow.document.write("  </td></tr>\n")
	jpgWindow.document.write("  <tr><td>\n")
	jpgWindow.document.write("  <p align=\"right\"><a href=\"javascript: window.close()\" onMouseOver=\"select1('close')\" onMouseOut=\"unselect1('close')\"><img src=\"./pic/closewin.gif\" name=\"close\" border=0></a></p>\n")
	jpgWindow.document.write("  </td></tr>\n")
	jpgWindow.document.write("  </table></center>\n")
	jpgWindow.document.write("</body>\n")
	jpgWindow.document.write("</html>\n")
    id++
}

// end of Javascript -->