 function submitLogin(){

 var hiba = 0;
 if ( document.loginForm.username.value=='' ){
   if (hiba!=1){
     window.alert('Kérjük adja meg a email címét!');
     document.loginForm.username.focus();
     var hiba = 1;
     }
   }
   
  if ( document.loginForm.passwd.value=='' ){
   if (hiba!=1){
     window.alert('Kérjük adja meg a jelszavát!');
     document.loginForm.passwd.focus();
     var hiba = 1;
     }
   }

   if (hiba!=1){
    document.loginForm.submit();
   }
   
 }
 
 
 function nullaz(){
    document.autokeres.gyartmany.value="0";
    document.autokeres.tipus.value="";
    
    document.autokeres.uzemanyag.value="0";
    
    document.autokeres.allapot.value="0";
    
    document.autokeres.evjarattol.value="0";
    document.autokeres.evjaratig.value="0";
 
    document.autokeres.artol.value="";
    document.autokeres.arig.value="";
    
    document.autokeres.kobtol.value="";
    document.autokeres.kobig.value="";
    
    document.autokeres.megye.value="0";
    
    document.autokeres.abs.checked="";
    document.autokeres.automata.checked="";
    document.autokeres.klima.checked="";
    document.autokeres.alufelni.checked="";
 }
 
 function jumpURL(url,s){
   if ( window.confirm(s) ){
     location.href=url;
   }
 }
