function start_mar(mar)
{
	mar.start();
}

function stop_mar(mar)
{
	mar.stop();
}

function show_hide(id)
{
		if (document.getElementById(id).style.display == 'none')
		{
			document.getElementById(id).style.display='';
		}
		else
		{
			document.getElementById(id).style.display='none';
		}
}

function show(id)
{
			document.getElementById(id).style.display='';
}

function hide(id)
{
			document.getElementById(id).style.display='none';
}

function showid(id)
{
	document.getElementById('calc').style.display = 'none';
	document.getElementById('obl').style.display = 'none';	document.getElementById('tofoto').style.display = 'none';
	document.getElementById(id).style.display = ''
}

function confirm_to(href)
{
	if (confirm('Вы действительно хотите удалить?'))
	{
		window.location=href;		
	}
}


