function mostrar(id) {
  if (document.getElementById(id)) { 
    document.getElementById(id).style.display = 'block'; 
  }
} 
function ocultar() {
	for (var i = 1; i<10; i++) {
		if (document.getElementById('sm_o0'+i)) {
      document.getElementById('sm_o0'+i).style.display='none';
    }
	}
  if (document.getElementById('sm_o10')) {	document.getElementById('sm_o10').style.display='none'; }
}

