<!--
    function kontrola() {
    
      if (document.form_enter.login.value == "") {
         // jeśli nie wpisał hasła
         alert("Wpisz swój login!");
       document.form_enter.login.focus(); 
	// if the browser is Netscape 6 or IE
	if(document.all || document.getElementByID){
	// change the color of text field
	document.form_enter.login.style.background = "yellow";
	}
	// make sure the form is not submitted
	return false;     
	}
 if (document.form_enter.haslo.value == "") {
         // jeśli nic nie wpisał
         alert("Uzupełnij hasło!");
         document.form_enter.haslo.focus(); 
	// if the browser is Netscape 6 or IE
	if(document.all || document.getElementByID){
	// change the color of text field
	document.form_enter.haslo.style.background = "yellow";
	}
	// make sure the form is not submitted
	return false;     
       }
return true; 
      }
//-->
