// JavaScript Document


//skok na prvni input
function Oznac()  
{document.form2.elements[0].focus(); 
}


//kontrola noveho produktu
function Checkform(){
var h=1;
if(document.form2.pnr.value ==  "" )
 {
 alert("Vyplňte prosím číslo produktu.");
 document.form2.pnr.focus();
 h=0;
 return false;
}

if(document.form2.name.value == "" )
 {
 alert("Vyplňte prosím název produktu.");
 document.form2.name.focus();
 h=0;
 return false;
}



if (h == 1) document.form2.submit();
}

//Potvrzeni odstraneni produktu
function Confirmform(){							
var h=0;
 
message = "Opravdu chcete smazat produkt "+document.form2.pnr.value+"?";
    var name=confirm(message)
    if (name==true)
    {
        document.form2.action1.value = 1;
        h=1; 
    }
    
if (h == 1) {
 
document.form2.submit();
}
}
//kontrola pred odeslanim registracniho formu uzivatele--------------------------------
function Odesli(){							
var h=1;
 
if(document.form2.name.value.length <=  4 )
 {
 alert("Vyplňte prosím své jméno a příjmení.");
 document.form2.name.focus();
 h=0;
 return false;
} 

if(document.form2.username.value.length <=  5 )
 {
 alert("Uživatelské jméno musí obsahovat min. 6 znaků");
 document.form2.username.focus();
 h=0;
 return false;
} 
 if(document.form2.msisdn.value.length <=  8 )
 {
 alert("Mobilní číslo je neplatné");
 document.form2.msisdn.focus();
 h=0;
 return false;
}  

if(document.form2.email.value != "" && document.form2.email.value.indexOf('@') == -1)
{
   alert("Vyplnil jste nesprávnou e-mailovou adresu.");
   document.form2.email.focus();
   h=0;
   return false;
}
if (h == 1) document.form2.submit();
}

//kontrola pred odeslanim aktivacniho klice--------------------------------
function Odesli_klic(){							
var h=1;
 
if(document.form3.code.value.length <= 3 || document.form3.code.value.length >= 9)
 {
 alert("Zadaný registrační kód není platný.Okakujte prosím zadání.");
 document.form3.code.focus();
 h=0;
 return false;
} 

 
if (h == 1) document.form3.submit();
}


//kontrola pred odeslanim login a pass --------------------------------
function Check_login(){							
var h=1;
 
if(document.form2.username.value.length <=  5 )
 {
 alert("Uživatelské jméno musí obsahovat min. 6 znaků");
 document.form2.username.focus();
 h=0;
 return false;
} 
 if(document.form2.pass.value.length <=  5 )
 {
 alert("Heslo musí obsahovat min. 6 znaků");
 document.form2.pass.focus();
 h=0;
 return false;
} 

 
if (h == 1) document.form2.submit();
}
