function Sprawdz()
{
		telefon=/^[0-9]{6,}$/
					
		//alert("Wprowadz poprawny numer telefonu"+document.Form.tel.value);
		//document.Form.imie.focus();
		
		//if (!telefon.test(document.Form.tel.value))
		//{
		//	alert("Wprowadz poprawny numer telefonu");
		//	document.Form.imie.focus();
		//	return 0;
		//}
		
				       
		
		return true;
		
}



 

function maskujKlawisze(AEvent, AMaska)
{
    if (window.Event) {
        kodKlawisza = AEvent.which;
    } else {
        kodKlawisza = AEvent.keyCode;
    }

    if (kodKlawisza == 13) {
        return true;  // Enter
    };

    if (kodKlawisza == 0) {
        return true;  // klawisze sterujące
    };

    klawisz = String.fromCharCode(kodKlawisza);

    if (AMaska.indexOf(klawisz) == -1) {
        return false;
    } else {
        return true;
    }
}

 
 
 
 

