function IFRAME_size_to_content(iframe_id) 
{
		 var the_height=document.getElementById(iframe_id).contentWindow.document.body.scrollHeight;//find the height of the internal page
		 document.getElementById(iframe_id).style.height=the_height + "px";		 
}
   


