
function ShowDiv(strShow)
	{
	document.getElementById(strShow).style.display = 'block';
	}
function HideDiv(strHide)
	{
	document.getElementById(strHide).style.display = 'none';
	}
function ChangeDiv(strHide, strShow)
	{
	document.getElementById(strHide).style.display = 'none';
	document.getElementById(strShow).style.display = 'block';
	}
/*
function CloseAllDivs()
	{
	document.getElementById('foto01').style.display = 'none';
	document.getElementById('foto02').style.display = 'none';
	document.getElementById('foto03').style.display = 'none';
	document.getElementById('foto04').style.display = 'none';
	document.getElementById('foto05').style.display = 'none';
	}
*/