function meniuA(id) {
	dezactivare('meniu');
	id.className = 'activ';
}

function meniuI(id) {
	
}

function goleste(id) {
	id.value = '';
}

function suche() {
	if (document.getElementById('tx_indexedsearch[sword]').value=='') document.getElementById('tx_indexedsearch[sword]').value = 'Suche';
}

function umple(id) {
	if (id.value == '') id.value = 'Suche';
}

function dezactivare(id) {
	x = document.getElementById(id).getElementsByTagName('li')
	for (var i=0;i<x.length;i++) {
		x[i].className = '';
	}
}

function pWindow(url)
{
	print=window.open(url, 'printWindow', 'left=0, top=0, width=600, height=600, toolbar=no, status=no, scrollbars=yes, resize=yes, menubar=yes');
	print.focus();
}