function startbox(boxId)
{
	document.getElementById(boxId).style.display = "none";
	}

function boxfunc(boxId)
{
	if(document.getElementById(boxId).style.display == "none")
	{
		startbox(boxId);
		document.getElementById(boxId).style.display = "block";
	}
	else
	{
		startbox(boxId);
	}
}
