// JavaScript Document

var aktualni = "";

function menu (smenu) {
	if (aktualni == smenu) {
		document.getElementById(smenu).style.display = "none";
		aktualni = "";
	} else {
		if (aktualni != "") {
			document.getElementById(aktualni).style.display = "none";
		}
		document.getElementById(smenu).style.display = "block";
		aktualni = smenu;
	}
}




function Switch(objForm)
{
	with(objForm)
	{
		var pravnicka = prepinac[0].checked;
		
		SwitchElem(obchodni_jmeno,pravnicka);
		SwitchElem(ulice,pravnicka);
		SwitchElem(psc,pravnicka);
		SwitchElem(mesto,pravnicka);
		SwitchElem(ico,pravnicka);
		SwitchElem(dic,pravnicka);
		SwitchElem(titul,pravnicka);
		SwitchElem(jmeno,pravnicka);
		SwitchElem(prijmeni,pravnicka);
		SwitchElem(telefon,pravnicka);
		SwitchElem(fax,pravnicka);
		SwitchElem(mobilni_telefon,pravnicka);
		SwitchElem(email,pravnicka);
		
		SwitchElem(f_ulice,!pravnicka);
		SwitchElem(f_mesto,!pravnicka);
		SwitchElem(f_psc,!pravnicka);
		SwitchElem(f_titul,!pravnicka);
		SwitchElem(f_jmeno,!pravnicka);
		SwitchElem(f_prijmeni,!pravnicka);
		SwitchElem(f_telefon,!pravnicka);
		SwitchElem(f_fax,!pravnicka);
		SwitchElem(f_mobilni_telefon,!pravnicka);
		SwitchElem(f_email,!pravnicka);
		
		if (pravnicka)
			obchodni_jmeno.focus();
		else
			f_ulice.focus();
	}
}


function SwitchElem(el,bEnable)
{
	var disabledColor= 'silver';
	var enabledColor= 'white';
	
	if (el)
	{
		el.disabled= !bEnable;
		el.style.backgroundColor= (bEnable ? enabledColor : disabledColor)
		if (!bEnable) el.value= '';
	}
}	

function adresa_nova (objForm) {
	with (objForm) {
		dodaci_jmeno.disabled = 0;
		dodaci_ulice.disabled = 0;
		dodaci_mesto.disabled = 0;
		dodaci_psc.disabled = 0;
		
		dodaci_jmeno.style.backgroundColor = 'white';
		dodaci_ulice.style.backgroundColor = 'white';
		dodaci_mesto.style.backgroundColor = 'white';
		dodaci_psc.style.backgroundColor = 'white';
	
		/*
		document.getElementById("s_dodaci_jmeno").style.backgroundColor = 'silver';
		document.getElementById("s_dodaci_ulice").style.backgroundColor = 'silver';
		document.getElementById("s_dodaci_mesto").style.backgroundColor = 'silver';
		document.getElementById("s_dodaci_psc").style.backgroundColor = 'silver';
		*/
	}
}

function adresa_stala (objForm) {
	with (objForm) {
		dodaci_jmeno.disabled = 1;
		dodaci_ulice.disabled = 1;
		dodaci_mesto.disabled = 1;
		dodaci_psc.disabled = 1;
		
		dodaci_jmeno.style.backgroundColor = 'silver';
		dodaci_ulice.style.backgroundColor = 'silver';
		dodaci_mesto.style.backgroundColor = 'silver';
		dodaci_psc.style.backgroundColor = 'silver';
	
		dodaci_jmeno.value = '';
		dodaci_ulice.value = '';
		dodaci_mesto.value = '';
		dodaci_psc.value = '';
		
		/*
		document.getElementById("s_dodaci_jmeno").style.backgroundColor = 'white';
		document.getElementById("s_dodaci_ulice").style.backgroundColor = 'white';
		document.getElementById("s_dodaci_mesto").style.backgroundColor = 'white';
		document.getElementById("s_dodaci_psc").style.backgroundColor = 'white';
		*/
	}
}

function zpracuj_form_produkt (klic, hodnota) {
	document.form_produkt.tlacitko.name = klic;
	document.form_produkt.tlacitko.value=hodnota;
	document.form_produkt.submit();
}

