// mekstisnov.js

// překopírování dat v časech
function prenes() {
  document.forms[0].artEnd.value = document.forms[0].artStart.value.substring(0, 10);
}

// překopírování triname
function prenestri() {
  document.forms[0].usrShort.value = document.forms[0].usrLast.value.substring(0, 3);
}

// kontrola dat ve formuláři
function kontrola(){
  /*
  alert ("artTitle " + document.forms[0].artTitle.value.length
  +"\n artMessa " + document.forms[0].artMessage.value.length
  +"\n artStart " + document.forms[0].artStart.value.length 
  +"\n artEnd.v " + document.forms[0].artEnd.value.length 
  +"\n artLocat " + document.forms[0].artLocation.value.length 
  +"\n artUrl.v " + document.forms[0].artUrl.value.length 
  +"\n artUrlTe " + document.forms[0].artUrlText.value.length
  +"\n artUrl1.v " + document.forms[0].artUrl1.value.length 
  +"\n artUrl1Te " + document.forms[0].artUrl1Text.value.length
  +"\n artStatus " + document.forms[0].artStatus.value.length
  +"\n artCategory " + document.forms[0].artCategory.value.length);
  */
  
  // Web adresa je vyplněna, ale chybí Text Adresy.
  if((document.forms[0].artUrl.value.length >= 12) && (document.forms[0].artUrlText.value.length < 3)){
    document.forms[0].artUrlText.style.backgroundColor = "lightpink";
  }
  if((document.forms[0].artUrl1.value.length >= 12) && (document.forms[0].artUrl1Text.value.length < 3)){
    document.forms[0].artUrl1Text.style.backgroundColor = "lightpink";
  }
  // Text Adresy je vyplněn, ale chybí Web adresa.
  if((document.forms[0].artUrl.value.length < 12) && (document.forms[0].artUrlText.value.length >= 3)){
    document.forms[0].artUrl.style.backgroundColor = "lightpink";
  }
  if((document.forms[0].artUrl1.value.length < 12) && (document.forms[0].artUrl1Text.value.length >= 3)){
    document.forms[0].artUrl1.style.backgroundColor = "lightpink";
  }
  // Web adresa i Text Adresy jsou vyplněny
  if((document.forms[0].artUrl.value.length >= 12) && (document.forms[0].artUrlText.value.length >= 3)){
    document.forms[0].artUrl.style.backgroundColor = "snow";
    document.forms[0].artUrlText.style.backgroundColor = "snow";
  }
  if((document.forms[0].artUrl1.value.length >= 12) && (document.forms[0].artUrl1Text.value.length >= 3)){
    document.forms[0].artUrl1.style.backgroundColor = "snow";
    document.forms[0].artUrl1Text.style.backgroundColor = "snow";
  }
  // vše musí být vyplněno kromě url
  if((document.forms[0].artTitle.value.length == 0) || 
  (document.forms[0].artMessage.value.length == 0) || 
  (document.forms[0].artStart.value.length == 0) || 
  (document.forms[0].artEnd.value.length == 0) || 
  (document.forms[0].artLocation.value.length == 0) || 
  (document.forms[0].artStatus.value.length == 0) || 
  (document.forms[0].artCategory.value.length == 0)
  ){
    document.forms[0].send.disabled=true;
  }else{
    document.forms[0].send.disabled=false;
    //alert("uzž!");
  }
}

function fShow(item,init){
  init.style.display='none'; 
  document.getElementById(item).style.display="inline";
}
