// Ändrar höjden på iframen för att passa till innehållet.
// lägg till onload="getdocumentheight('iframeruta');"

function setiframeheight(obj) 
{
	var objekt = document.getElementById(obj)
	// Hämtar höjden... för Mozilla/Explorer
	if (objekt.contentDocument && objekt.contentDocument.body.offsetHeight)
		{
			documentheight = objekt.contentDocument.body.offsetHeight;
		}
	else if(objekt.Document && objekt.Document.body.scrollHeight)
		{
			documentheight = objekt.Document.body.scrollHeight;
		}	
	// Stter höjden...
	objekt.style.height= documentheight+40;

}


