// JavaScript Document

///////////////////////////////////////////////////////////////////////////////////////////////////
// Zobrazeni stranky jako modalniho dialogu
function modProgressShow(text)
{
	if(document.getElementById('modProgress'))
	{
		document.getElementById('modProgress').style.display = 'block';
		if(document.getElementById('modProgressLabel') && text) document.getElementById('modProgressLabel').innerHTML = text;
	}
}


///////////////////////////////////////////////////////////////////////////////////////////////////
// Skryti stranky jako modalniho dialogu
function modProgressHide()
{
	if(document.getElementById('modProgress'))
		document.getElementById('modProgress').style.display = 'none';
}

///////////////////////////////////////////////////////////////////////////////////////////////////
// Zobrazeni stranky jako modalniho dialogu, vstup id objektu
function modProgressShow2() 
{
	if(document.getElementById('message_id'))
		document.getElementById('message_id').style.display = 'block';
}

///////////////////////////////////////////////////////////////////////////////////////////////////
// Skryti stranky jako modalniho dialogu, vstup id objektufunction modProgressHide()
function modProgressHideId()
{
	if(document.getElementBy2('message_id'))
		document.getElementById('message_id').style.display = 'none';
}
