	function doShowPLDHistory()
	{
		if(jQuery('#pld_history').attr('visible') == 0)
		{
			jQuery('#pld_history').show();
			jQuery('#pld_history').attr('visible', 1);
		}else
		{
			jQuery('#pld_history').hide();
			jQuery('#pld_history').attr('visible', 0);
		}
	}
	function doShowSvcChiefHistory()
	{
		if(jQuery('#svc_history').attr('visible') == 0)
		{
			jQuery('#svc_history').show();
			jQuery('#svc_history').attr('visible', 1);
		}else
		{
			jQuery('#svc_history').hide();
			jQuery('#svc_history').attr('visible', 0);
		}
	}	
