function toggle(id) {
	elt = document.getElementById('list'+id).className;

	if(/hide/.test(elt)){
		document.getElementById('list'+id).className = elt.replace(/hide/, '');
	} else {
		document.getElementById('list'+id).className += ' hide';
	}
}

function setHeight() {
		contentBox = document.getElementById('content').offsetHeight;

		newsBox = document.getElementById('blocnews').offsetHeight;

		if(contentBox<newsBox)
			document.getElementById('content').style.height = newsBox-25+'px';
}

function viewImg(file) {
	window.open('action/ViewImage.htm?file='+file ,'tmrllscdrsbll', 'width=860,height=665');
}

window.onload = function () {
	setHeight();

	Nifty('div#menu', 'bottom');
	Nifty('div#blocnews', 'bottom');
	Nifty('div#content', 'all fixed-height');
	Nifty('h2.tab', 'top small');
}