var virheet= new Array();


function tarkistaYhteydenottolomake(){
    virheet.length=0;
    document.getElementById('virheosio').innerHTML="";

    if(valittu_kieli==1){
        tarkistaTyhja('nimi','nimi','yhteydenotto');
        tarkistaTyhja('email','sähköposti','yhteydenotto');
    }else{
        tarkistaTyhja('nimi','namn','yhteydenotto');
        tarkistaTyhja('email','e-post','yhteydenotto');
    }//end if

    if(virheet.length==0){
        document.forms[0].submit();
    }else{
        for(var i in virheet){
            div = document.createElement('div');
            div.className="virhe_teksti";
            asetaTeksti(div,virheet[i]);
            document.getElementById('virheosio').appendChild(div);
        }//end for
    }//end if
}//end function

