function OpenPublicProcessingPanel()
{
	var theProcessingPanel = document.getElementById('processing_panel');
	if(theProcessingPanel)
	{
		theProcessingPanel.style.visibility = 'visible';
		theProcessingPanel.style.display = 'block';
	}
}

function EndPublicProcessingPanel()
{	
	var theProcessingPanel = document.getElementById('processing_panel');
	if(theProcessingPanel)
	{
		setTimeout("HideDiv('processing_panel')",1000);
	}
}

function HideDiv(theDiv)
{
	var theDiv = document.getElementById(theDiv);
	if(theDiv)
	{
		theDiv.style.visibility = 'hidden';
		theDiv.style.display = 'none';
	}		
}
