 if (document.all && document.styleSheets && document.styleSheets[0] && document.styleSheets[0].addRule)
 {
  // Feel free to add rules for specific tags only, you just have to call it several times.
  document.styleSheets[0].addRule('*', 'behavior: url(iepngfix.htc)');
 }




<!--
function validateForm(AForm)
{


    if (AForm.imie.value == ""){
    alert ("Nie podano imienia i nazwiska !");
    return false;
   }

    if (AForm.miejscowosc.value == ""){
    alert ("Nie podano miejscowości !");
    return false;
   }

    if (AForm.telefon.value == ""){
    alert ("Nie podano numeru telefonu !");
    return false;
   }


    maska = /^([a-zA-Z0-9_.+-]+)@([a-zA-Z0-9.-]+)\.([a-zA-Z]+)$/;
    if (maska.test(AForm.mail.value)==false) {
      window.alert("Proszę podać prawidłowy adres e-mail !");
      return false;
    }

    if (AForm.tresc.value == ""){
    alert ("Proszę podać treść wiadomośći !");
    return false;
}


}
-->