function calcHeight(the_iframe)
{
	if(navigator.appName=="Microsoft Internet Explorer" ){
        	the_iframe.style.height = the_iframe.contentWindow.document.body.scrollHeight;  //changement de la hauteur
        	the_iframe.style.width = the_iframe.contentWindow.document.body.scrollWidth;    //changement de la largeur
	} else {
		the_iframe.style.height = the_iframe.contentDocument.body.offsetHeight+30+"px";
	}
} 
