window.onload = init;

function init() {
	all('hide');
}

// display="none"
function dN(idshow) {	
	if(document.getElementById(idshow).style.display == 'none') {
		document.getElementById(idshow).style.display = '';
	} else {
		document.getElementById(idshow).style.display = 'none';
	}
}

function all(what) {
	i = 0;
	divs = document.getElementsByTagName('div');	// nalezeni vsech DIVu v documentu
	divsleng = divs.length;	// pocet DIVu

	while (i < divsleng) {
		iddivu = divs[i].getAttribute('id');	// cyklovani a zjistovani ID kazdeho DIVu
                
                if (what == 'hide') {
                    if (cls.has(divs[i], 'journxc')) {
                            document.getElementById(iddivu).style.display = 'none';
                    }
                    if (cls.has(divs[i], 'descbook')) {
                            document.getElementById(iddivu).style.display = 'none';
                    }
                    if (cls.has(divs[i], 'expcoldiv')) {
                            document.getElementById(iddivu).style.display = 'none';
                    }
                }
                
                if (what == 'show') {
                    if (cls.has(divs[i], 'journxc')) {
                            document.getElementById(iddivu).style.display = '';
                    }
                    if (cls.has(divs[i], 'descbook')) {
                            document.getElementById(iddivu).style.display = '';
                    }
                    if (cls.has(divs[i], 'expcoldiv')) {
                            document.getElementById(iddivu).style.display = '';
                    }
                }


		/*classdivu = divs[i].getAttribute('class');
                if ((what == 'hide') && (classdivu == 'journxc')) {
			document.getElementById(iddivu).style.display = 'none';
		}
		if ((what == 'show') && (classdivu == 'journxc')) {
			document.getElementById(iddivu).style.display = '';
		}
                */
                i++;
	}
}

