// All Javscript for the Uni web page

// Show/hide function, stolen from the internet and modified by twiltziu

function showhide(id)
{
	var klappText = document.getElementById(id);
	
	if (klappText.style.display == 'none') {
  		klappText.style.display = 'block';
	}
	else {
  		klappText.style.display = 'none';
	}
}
