// JavaScript Document

function display (category) {


	var whichcategory = document.getElementById(category);

	if (whichcategory.style.display=="none") {
		whichcategory.style.display = '';		

		

	} else {
		whichcategory.style.display = 'none';

	}
	

}
