function poema_oculta(cual){
	document.getElementById('poema_m_'+cual).style.display='none';
	document.getElementById('poema_o_'+cual).style.display='block';
}
function poema_muestra(cual){
	document.getElementById('poema_m_'+cual).style.display='block';
	document.getElementById('poema_o_'+cual).style.display='none';
}

