function show_mask_loading(){
    jQuery('#mask_loading').height(jQuery(document).height()).css('opacity', '0.5').show() ;
    jQuery('#text_loading').css('top', jQuery(window).height()/2+jQuery(document).scrollTop()+'px').show() ;
}
function hide_mask_loading(){
    jQuery('#mask_loading').hide() ;
    jQuery('#text_loading').hide() ;
}
