// JavaScript para los controles de la nota interna /* var texto = 1; function zoom(valor) { if(valor && texto == 1) { $('nota').style.fontSize = '1.5em'; texto++; } else if(valor && texto == 0) { $('nota').style.fontSize = '1.3em'; texto++; } else if(!valor && texto == 2) { $('nota').style.fontSize = '1.3em'; texto--; } else if(!valor && texto == 1) { $('nota').style.fontSize = '1.1em'; texto--; } } */ function zoom(valor) { valor?$('nota').style.fontSize = '1.5em':$('nota').style.fontSize = '1.3em' } function mailear() { if($('mailear').style.display == 'none') { $('mailear').style.display = 'block'; } else { $('mailear').style.display = 'none'; } } function apps() { if ($('mailear')) { $('mailear').style.display = 'none'; } else { $('apps').innerHTML ="
Imprimir Agrandar el tamaño del texto Disminuir el tamaño del texto
" } }