﻿		function foto()
		{
			var fotek = 0;

			document.write("<table id='foto'>");
			fotek=0;
			for(i=foto_path.length-1;i>=0;i--)
			{
				if(fotek == 0)
 				{
						document.write("<tr>");
				}

				document.write("<td><img src='"+foto_path[i]+"' alt='"+foto_alt[i]+"' onclick='imageload(this.src, this.alt, 800, 800);' class='img' style='cursor:pointer' />"+foto_alt[i]+"</td>");

				fotek+=1;
				if(fotek == 5)
				{
					document.write("</tr>");
					fotek=0;
				}

			}
			if(fotek != 5)
			{
				document.write("</tr>");
			}
			
			document.write("</table>");

		}

		function imageload(src, alt, w, h) 
		{
		    var pomh = h;
		    var pomw = w;
	    	var path = "";
	    
	    	path = src.substring(0, src.lastIndexOf('/'))+'/velke/'+src.substring(src.lastIndexOf('/')+1,src.length);
	    	
			var newWin = window.open("","_blank",config="scrollbar=no,directories=no,toolbars=no,menubars=no,address=no,status=no,height="+ pomh +",width="+ pomw +"");
	    
		    newWin.document.write("<title>"+alt+"</title>");
			newWin.document.write("<table width='100%' height='100%'><tr><td style='text-align:center;'><img src='"+ path +"' onclick='window.close();'/></td></tr></table>");
		    newWin.document.close();
		}

