function dodaj_wizytowka_tytul() {
	txt_przedrostek = document.getElementById('dodaj_przedrostek').value;
	txt_imie = document.getElementById('dodaj_imie').value;
	txt_nazwisko = document.getElementById('dodaj_nazwisko').value;
  txt_tytul = txt_przedrostek + ' ' + txt_imie + ' ' + txt_nazwisko;
  document.getElementById('wiz_tytul').value = txt_tytul; 
}

function dodaj_wizytowka_opis() {
	txt_tekst = document.getElementById('dodaj_tekst').value;
  document.getElementById('wiz_opis').value = txt_tekst;
	txt_tekst2 = document.getElementById('dodaj_tekst2').value;
  document.getElementById('wiz_opis2').value = txt_tekst2;
}

function dodaj_wizytowka_adres() {
	txt_miasto = ' ' + document.getElementById('dodaj_miasto').value;
	txt_kod = document.getElementById('dodaj_kod').value;
  txt_ulica = document.getElementById('dodaj_ulica').value;
  txt_telefon = document.getElementById('dodaj_telefon').value;
  txt_komorka = document.getElementById('dodaj_komorka').value;
  txt_czyemail = document.forms['dodaj_wpis'].dodaj_czyemail.value;
  txt_email = document.getElementById('dodaj_email').value;

  if (document.forms['dodaj_wpis'].dodaj_takemail.checked && txt_email!='') {
    txt_email = ', email';
  } else {
    txt_email = '';
  }
  if (txt_ulica!='')	{
	  txt_ulica = ' ul. ' + txt_ulica;
  }
	if (txt_telefon!='')	{
    txt_telefon = ', tel.: ' + txt_telefon;
  }
	if (txt_komorka!='')	{
    txt_komorka = ', kom.: ' + txt_komorka;
	}

  txt_opis = txt_kod + txt_miasto + txt_ulica + txt_telefon + txt_komorka + txt_email;
  document.getElementById('wiz_adres').value = txt_opis; 
}

function dodaj_wizytowka_osobafirma(){
  if (document.forms['dodaj_wpis'].dodaj_osobafizyczna.checked) {
    document.getElementById('div_dodaj_nazwa').style.display = 'none'; 
    document.getElementById('div_dodaj_nazwisko').style.display = 'inline'; 
    document.getElementById('div_dodaj_imie').style.display = 'inline'; 
    document.getElementById('dodaj_imie').style.display = 'inline'; 
    document.getElementById('div_dodaj_przedrostek').style.display = 'inline'; 
    document.getElementById('dodaj_przedrostek').style.display = 'inline'; 
    document.getElementById('dodaj_nazwisko').title = 'Nazwisko np. "Kowalski"';
  } else {
    document.getElementById('div_dodaj_nazwisko').style.display = 'none'; 
    document.getElementById('div_dodaj_nazwa').style.display = 'inline'; 
    document.getElementById('div_dodaj_imie').style.display = 'none'; 
    document.getElementById('dodaj_imie').style.display = 'none'; 
    document.getElementById('div_dodaj_przedrostek').style.display = 'none'; 
    document.getElementById('dodaj_przedrostek').style.display = 'none'; 
    document.getElementById('dodaj_nazwisko').title = 'Nazwa firmy np. "IB sp.c."';
  }
}

function emptybox(box) {
  if (document.getElementById(box).value=='') {
    document.getElementById('div_' + box).style.color = "#ff0000";
    return true;
  } else {
    document.getElementById('div_' + box).style.color = "#033d4d";
    return false;
  }
}

function dodaj_check() {
  ok = true
    
  if (emptybox('dodaj_specjalizacje')) { ok = false; }
  if (emptybox('dodaj_wojewodztwo')) { ok = false; }
  if (emptybox('dodaj_email')) { ok = false; }
  if (emptybox('dodaj_nazwisko')) { ok = false; }

  if (ok)  {
    return true;
  } else {
    alert('Należy wypełnić pola zaznaczone *');
    return false;
  }
}
