function localMapClick(fLat, fLon, iZoom, sTyp)
	{
	if (fLat == null)
		document.getElementById('formDodajLat').value = '';
	else
		document.getElementById('formDodajLat').value = fLat;
	if (fLon == null)
		document.getElementById('formDodajLon').value = '';
	else
		document.getElementById('formDodajLon').value = fLon;
	if (iZoom == null)
		document.getElementById('formDodajZoom').value = '';
	else
      document.getElementById('formDodajZoom').value = iZoom;
	if (sTyp == null)
		document.getElementById('formDodajTypMapy').value = '';
	else
		document.getElementById('formDodajTypMapy').value = sTyp;
	}
function localMapZoom(iZoom)
	{
	if (iZoom != null)
		document.getElementById('formDodajZoom').value = iZoom;
	}
function localMapType(sTyp)
	{
	if (sTyp != null)
		document.getElementById('formDodajTypMapy').value = sTyp;
	}
