//            JavaScript Document
// ---------------------------------------------
// Iframe hoogte bepalen door tellen van regels
//          Gemaakt door Jan Cost
// ---------------------------------------------

function AutoIFrame(id){
if (!window.opera && !document.mimeType && document.all && document.getElementById){
parent.document.getElementById(id).style.height=this.document.body.offsetHeight + 100 + "px";}
else if(document.getElementById) {
parent.document.getElementById(id).style.height=this.document.body.scrollHeight + 100 + "px"}}

