/*
 * Javascript function available in every page
 */

function showHide(idecko){
  el=document.getElementById(idecko).style;
  if(el.display == "block"){
    el.display="none";
  }
  else{
    el.display="block";
  }
}


function crypt_element(idecko) {
  document.getElementById(idecko).value = calcMD5(document.getElementById(idecko).value);
}


function validateLogin(){
	if(document.getElementById("customer_login").value.length < 1) {
		alert("Není zadané uživatelské jméno.");
		document.getElementById("customer_login").focus();
		return false;
	}
	if(document.getElementById("customer_password").value.length < 1) {
		alert("Není zadané uživatelské heslo.");
		document.getElementById("customer_password").focus();
		return false;
	}
	crypt_element("customer_password");
	return true;

}

function validateRegistration(){
	if(document.getElementById("name").value.length < 1) {
		alert("Vyplňte prosím Vaše jméno.");
		document.getElementById("name").focus();
		return false;
	}
	if(document.getElementById("surname").value.length < 1) {
		alert("Vyplňte prosím Vaše příjmení.");
		document.getElementById("surname").focus();
		return false;
	}
	if(document.getElementById("street").value.length < 1) {
		alert("Vyplňte prosím ulici a číslo popisné Vašeho bydliště.");
		document.getElementById("street").focus();
		return false;
	}
	if(document.getElementById("city").value.length < 1) {
		alert("Vyplňte prosím město Vašeho bydliště.");
		document.getElementById("city").focus();
		return false;
	}
	if(document.getElementById("zip").value.length < 1) {
		alert("Vyplňte prosím poštovní směrovací číslo Vašeho bydliště.");
		document.getElementById("zip").focus();
		return false;
	}
	if(document.getElementById("telephone").value.length < 1) {
		alert("Vyplňte prosím Vaše telefonní číslo.");
		document.getElementById("telephone").focus();
		return false;
	}	
	if(document.getElementById("email").value.length < 1) {
		alert("Vyplňte prosím Vaši emailovou adresu. Slouží také jako přihlašovací jméno.");
		document.getElementById("email").focus();
		return false;
	}	
	if(document.getElementById("email").value.indexOf("@") < 0) {
		alert("Vyplňte prosím korektně Vaši emailovou adresu ve tvaru schranka@server.koncovka ");
		document.getElementById("email").focus();
		return false;
	}	
	if(document.getElementById("password").value.length < 5) {
		alert("Vyplňte prosím heslo, které budete používat pro přihlášení v tomto obchodě. Použijte alespoň 5 znaků, z toho alespoň jednu číslici. ");
		document.getElementById("password").focus();
		return false;
	}
	if(document.getElementById("password_again").value != document.getElementById("password").value) {
		alert("Zdá se, že jste se překlepli při psaní hesla. Políčka s heslem se neshodují.");
		document.getElementById("password").value = "";
		document.getElementById("password_again").value = "";
		document.getElementById("password").focus();
		return false;
	}

  document.getElementById("password").value = calcMD5(document.getElementById("password").value);
  document.getElementById("password_again").value = calcMD5(document.getElementById("password_again").value);		
	return true;
}



function validateChangeProfil(){
	if(document.getElementById("name").value.length < 1) {
		alert("Vyplňte prosím Vaše jméno.");
		document.getElementById("name").focus();
		return false;
	}
	if(document.getElementById("surname").value.length < 1) {
		alert("Vyplňte prosím Vaše příjmení.");
		document.getElementById("surname").focus();
		return false;
	}
	if(document.getElementById("street").value.length < 1) {
		alert("Vyplňte prosím ulici a číslo popisné Vašeho bydliště.");
		document.getElementById("street").focus();
		return false;
	}
	if(document.getElementById("city").value.length < 1) {
		alert("Vyplňte prosím město Vašeho bydliště.");
		document.getElementById("city").focus();
		return false;
	}
	if(document.getElementById("zip").value.length < 1) {
		alert("Vyplňte prosím poštovní směrovací číslo Vašeho bydliště.");
		document.getElementById("zip").focus();
		return false;
	}
	if(document.getElementById("telephone").value.length < 1) {
		alert("Vyplňte prosím Vaše telefonní číslo.");
		document.getElementById("telephone").focus();
		return false;
	}	
	if(document.getElementById("email").value.length < 1) {
		alert("Vyplňte prosím Vaši emailovou adresu. Slouží také jako přihlašovací jméno.");
		document.getElementById("email").focus();
		return false;
	}	
	if(document.getElementById("email").value.indexOf("@") < 0) {
		alert("Vyplňte prosím korektně Vaši emailovou adresu ve tvaru schranka@server.koncovka ");
		document.getElementById("email").focus();
		return false;
	}	
  document.getElementById("password").value = calcMD5(document.getElementById("password").value);
  document.getElementById("password_again").value = calcMD5(document.getElementById("password_again").value);
	return true;
}


function confirmActionDelete(){
  if(confirm("Opravdu chcete smazat tento komentář?")){
      return true;
  }
  else return false
}



