﻿// JavaScript Document

function actu_iframe(id_iframe){
	var ifr = id_iframe;
	if (ifr){
		if(navigator.appName=="Microsoft Internet Explorer")
			ifr.style.height = ifr.document.body.scrollHeight+"px";
		else 
			ifr.style.height =ifr.contentDocument.body.scrollHeight+"px"	
	}
		
}