function getObj(obj) {
	if(!document.getElementById) return false;
	return (typeof(obj) == 'string') ? document.getElementById(obj) : obj;
}

function showInfo(id) {
	var mm = getObj(id);
	if(!mm) return;
	with(mm.style) display = (display == 'none') ? 'block' : 'none';
}