+ns.clear_flash = function(category , timeout) {
+ window.setTimeout(function(){
+ $('#flash_' + category).hide();
+ $('#flash_detail_' + category).hide();
+ $('#flash_' + category + '_disp').hide();
+ $('#flash_' + category + '_content').empty();
+ $('#flash_' + category + '_detail').empty();
+ }, timeout);
+};
+