<!-- <![CDATA[ 

/* Created by Siter.pl on 10.2007 */

function ShowForm() {
document.getElementById("dodajopinie").style.visibility = "visible";
document.getElementById("dodajopinie").style.display = "block";
document.getElementById("btn-dodajopinie").style.visibility = "hidden";
document.getElementById("btn-dodajopinie").style.display = "none";
}

// poprawnosc pol formularza
emailwzor=/^[0-9a-zA-Z\.\-\_]+\@(([0-9a-zA-Z\-])+\.)+([0-9a-zA-Z\-])+$/;
kodwzor=/^[0-9]{2}\-[0-9]{3}$/;
nipwzor=/^((\d{3}\-\d{3}\-\d{2}\-\d{2})|(\d{3}\-\d{2}\-\d{2}\-\d{3})|(\d{10}))$/;
wartosc=/^[0-9\s]+$/;

function formk(){

        // informacje osobowe
        errork="";

                if(document.getElementById('tresc_zapytania').value=="") {
                        errork +="- nie wpisano treści zapytania \n";
                        document.getElementById('tresc_zapytania').focus();
                }
                if(document.getElementById('email').value=="" || emailwzor.test(document.getElementById('email').value)==false) {
                        errork +="- nie podano adresu e-mail lub podany adres e-mail zawiera błędy\n";
                        document.getElementById('email').focus();
                }
                if(document.getElementById('telefon').value=="") {
                        errork +="- nie wpisano nr telefonu \n";
                        document.getElementById('telefon').focus();
                }
                if(document.getElementById('imie_nazwisko').value=="") {
                        errork +="- nie podano imienia i/lub nazwiska \n";
                        document.getElementById('imie_nazwisko').focus();
                }

                if(errork!=""){
                        alert("Prosimy o poprawne uzupełnienie wymaganych pól formularza, biorąc pod uwagę następujące błędy: \n"+errork);
                        return false;
                }

        return true;
}

// ]]> -->
