function hide(obj) {
	obj.style.display = 'none';
}

function hideId(id) {
	document.getElementById(id).style.display = 'none';
}

function show(obj) {
	obj.style.display = '';
}

function showId(id) {
	document.getElementById(id).style.display = '';
}