<!--

/*
	Ändrar iframens höjd så att innehållet i den syns utan att skroll behövs.
*/
function autofitIframe(id){
	var diff;
	switch(navigator.appName){
		case "Microsoft Internet Explorer":
			diff = 0;
			break;
		default:
			diff = 25;
	}
	
	
	if (!window.opera && !document.mimeType && document.all && document.getElementById){
		parent.document.getElementById(id).style.height= (this.document.body.offsetHeight+diff) +"px";
	}else if(document.getElementById) {
		parent.document.getElementById(id).style.height= (this.document.body.scrollHeight+diff) +"px"
	}
}

//-->
