function showDiv(div) {
	document.getElementById(div).style.display = 'block';
	return true;
}

function hideDiv(div) {
	document.getElementById(div).style.display = 'none';
	return true;
}