function resizeIframe(height,idFrame)   {
       height=parseInt(height)+100;
       $('#' +idFrame+'_div').css( "display","none" );       
       $('#' +idFrame).css( "height", height.toString() + "px" );  
	   $("html, body").animate({ scrollTop: 0 }, 0);
} 

function  resizeIframeReset(idFrame)   {
       height=400;
	   $('#' +idFrame).css( "height", height.toString() + "px" );  	   
       //$('#' +idFrame+'_div').css( "display","block" );       
}
