// JavaScript Document
//Check if div is visible or invisible, and set it to the required visibility
function expandDiv(id)
{
	var chosenDiv = document.getElementById(id);
	
	if(chosenDiv.style.display == 'none')
	{
		chosenDiv.style.display = '';	
	}
	else
	{
		chosenDiv.style.display = 'none';	
	}

}