<!--
var klikobj = false;
function firstclick(nieco) {	
	if (klikobj!=true) {
		nieco.value='';
		klikobj=true;
	}
}
function mapa(zobraz){
	obj = document.getElementById('mapa');
	switch (zobraz)
	{
		case 0: obj.style.display = "none"; break;
		case 1: 
			obj.style.display = "block";
			obj.style.background = "url('../images/mapa.png') no-repeat center top white";
			break;
		case 2:
			if (obj.style.backgroundColor != 'black') {
				obj.style.background = "url('../images/mapa-zoom.png') no-repeat center top black";
			} else {
				obj.style.background = "url('../images/mapa.png') no-repeat center top white";
			}
			break;
	}
}

function help(url) {
	window.open(url,"help_win","width=240,height=320,top=20,left=20,scrollbars=yes");
	return false;
};
//-->
