function show_detail(sid){
		
		//$('#detail'+sid).css('display', 'table-row');
		//$('#show'+sid).css('display', 'none');		
		//$('#hide'+sid).css('display', 'inline');
		$('#detail'+sid).show();
		$('#show'+sid).hide();	
		$('#hide'+sid).show();
		init_dw_Scroll(); 
}
function hide_detail(sid){
		//alert('this is show detail function of' + id);
		$('#detail'+sid).hide();
		$('#show'+sid).show();	
		$('#hide'+sid).hide();
		//$('#detail'+sid).css('display', 'none');
		//$('#hide'+sid).css('display', 'none');
		//$('#show'+sid).css('display', 'inline');
		init_dw_Scroll();
}
