function autofitIframe(id) {

    browser = navigator.appName;

    if (browser == "Microsoft Internet Explorer"){	// Internet Explorer

	parent.document.getElementById(id).style.height = (0 + document.body.scrollHeight) + "px";

    } else if (browser == "Netscape") {			// FireFox

	parent.document.getElementById(id).style.height = (0 + document.body.offsetHeight) + "px";

    }
    
	window.setTimeout( function(){parent.app.setContainerHeight()}, 200);
}


function autofitIframe() {

    id = "pcontent";

    if (top.document.getElementById(id)) {

	browser = navigator.appName;

	if (browser == "Netscape") {	// FireFox

	    top.document.getElementById(id).style.height = (0 + top.pcontent.document.body.offsetHeight) + "px";

	} else {			// Internet Explorer und andere

	    top.document.getElementById(id).style.height = (0 + top.pcontent.document.body.scrollHeight) + "px";

	}

    }
    window.setTimeout( function(){parent.app.setContainerHeight()}, 200);

}

