function cambiar(esto)
{
	vista=document.getElementById(esto).style.display;
	if (vista=='none')
		vista='block';
	else
		vista='none';

	document.getElementById(esto).style.display = vista;
}


function ocultartodo()
{
	document.getElementById('uno').style.display = 'none';
	document.getElementById('dos').style.display = 'none';
	document.getElementById('tres').style.display = 'none';
	document.getElementById('cuatro').style.display = 'none';
}


function ocultaAbout()
{
	document.getElementById('about-box').style.display = 'none';
}

function reintentar()
{ document.getElementById("errorTryAgain").style.display = "none";
}

