

function resizeContent() {
	if (document.all) {
		if (document.body.offsetHeight > 780) {
			currHeight = document.body.offsetHeight;
		
			document.getElementById("content").style.height = (currHeight - 114 - 183 + 62)+"px";
			document.getElementById("links").style.height = (currHeight - 114 - 183 + 62)+"px";
			document.getElementById("carea").style.height = (currHeight - 114 - 183 - 17 - 21 + 60)+"px";
			
		}
	} else {
		
		if (document.body.offsetHeight > 780) {			
			document.getElementById("content").style.height = (window.innerHeight - 114 - 118)+"px";
			document.getElementById("links").style.height = (window.innerHeight - 114 - 118)+"px";
			document.getElementById("carea").style.height = (window.innerHeight - 114 - 118 - 17 - 21)+"px";
		}
	}
}

function openFullImage(bild) {
	window.open("/imagefull.php?bild="+bild, "bild", "width=400,height=400,left=30,right=30,resizable=yes");
	
}

