	var ShowImage={
		w:null,	
		showDetailImage:function (w,h,f) {
            if (ShowImage.w!=null) ShowImage.w.close();
            ShowImage.w = window.open("http://prodejna.a-zebra.cz/show-image.php?f="+encodeURI(f), "FOTO", "scrollbars=no,resizable=no,status=no,width="+w+",height="+h+",left=440, top=300");
			ShowImage.w.focus();
		},
	    makeDetailLink: function (w,h) {
	    	var anch = document.getElementById("produktlist").getElementsByTagName("a");
			var n=0;
            for (i=0;i<anch.length;i++) {
				if (anch[i].className!="fullfoto")
					continue;

				anch[i].w=w[i];
				anch[i].h=h[i];
				anch[i].file=anch[i].href;
                anch[i].href="javascript: //nop/";
				anch[i].onclick = function() {                    
                    ShowImage.showDetailImage(this.w, this.h, this.file);
					return false;			
				}			
			}	    
		}
	}


