//***********************************************************
// DOM
//***********************************************************

var producerListVisible	= false;
var producerListDeActivated = true;

function showProducerList(){
	if(producerListDeActivated){
		var prDIV = document.getElementById("producerList");
		var flDIV = document.getElementById("producerListFilter");
		var ctDIV = document.getElementById("categoryList");
		
		prDIV.style.height = ctDIV.offsetHeight + "px";
		prDIV.style.visibility = (producerListVisible) ? "hidden" : "visible";
		flDIV.innerHTML = "<a href='javascript:void(0)' onmouseout='javascript:deActivateProducerList()' onmouseover='javascript:showProducerList()' class='bold'>" + ((producerListVisible) ? "FILTROVAT V&#221;ROBCE" : "SKR&#221;T FILTR") + "</a>";
		producerListVisible = !producerListVisible;
		producerListDeActivated = !producerListDeActivated;
	}
	return
}

function deActivateProducerList(){
	producerListDeActivated = true;
	return
}

//***********************************************************
// ARTICLE
//***********************************************************
function printArticle(id_article, chapter){
	var myChapter	= (chapter=="") ? "" : ("&chapter=" + chapter);
	var myHref	= "/default.aspx?print=1&plainart=1&article="+id_article+myChapter
	var myWin = window.open(myHref,"","width=560, height=350, scrollbars=yes, status=yes")	
	
	return
}

function mailArticle(id_article, chapter){
	var myChapter	= (chapter=="") ? "" : ("&chapter=" + chapter);
	var	myHref	= "/default.aspx?articlebymail=1&article="+id_article+myChapter
	myWin = window.open(myHref,"","width=166, height=350, scrollbars=no, resizable=no, status=yes")
	return
}
