Вот работает в Firefox. Замените на сайте, FireFox ругался на document.all
Цитата:
|
document.all is undefined
|
function doMenu(AObjIndex) {
4 var subObj = document.getElementById('chapter' + AObjIndex);
5 if ( subObj.style.display == 'none' ) {
6 subObj.style.display = 'block';
7 }
8 else {
9 subObj.style.display = 'none';
10 } // if..else
11} // doMenu