﻿// JScript File
function showhide(tableId){
//alert($('#'+PREFIX_MASTER+tableId).attr('class'));
if(document.getElementById(PREFIX_MASTER+tableId).style.display=='none'){
$('#'+PREFIX_MASTER+tableId).fadeIn('slow');  
$('#'+PREFIX_MASTER+'span'+tableId).removeClass('expand').addClass('collapse'); 
$('#'+PREFIX_MASTER+'span'+tableId).css('font-weight','bold');
}
else{
$('#'+PREFIX_MASTER+tableId).fadeOut('slow');
$('#'+PREFIX_MASTER+'span'+tableId).removeClass('collapse').addClass('expand');
$('#'+PREFIX_MASTER+'span'+tableId).css('font-weight','normal');
}
}

