function showDiv(div)
{
	var elem = document.getElementById(div);
	elem.style.display = (elem.style.display == 'none' ? 'block' : 'none');
}