		function initBilder(barn) {
//			document.getElementById(barn).style.cursor = "pointer";
//			document.getElementById(barn).style.cursor = "hand";
			document.getElementById(barn).onclick = function() {
				var ww,hh;
				if(screen.width) {
					ww = (screen.width / 2) - (150);
					hh = (screen.height / 2) - (200);
				}
				else {
					ww = "100";
					hh = "100";
				}
				bildWin = window.open("bild.asp?namn=" + barn , "bildWin","width=300,height=421,left="+ww+",top="+hh) ;

			}
/*			document.getElementById(barn).onmouseover = function() {
				this.style.backgroundColor = "#eee"
			}
			document.getElementById(barn).onmouseout = function() {
				this.style.backgroundColor = "transparent"
			}*/
		}
