if(document.getElementById) {
	window.onload = function() {
	}
}
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("/godjul/bild.asp?namn=" + barn , "bildWin","width=300,height=412,left="+ww+",top="+hh) ;

	}
/*			document.getElementById(barn).onmouseover = function() {
		this.style.backgroundColor = "#eee"
	}
	document.getElementById(barn).onmouseout = function() {
		this.style.backgroundColor = "transparent"
	}*/
}