﻿function validacija()
{
imeto=document.getElementById('ime');
phone=document.getElementById('telefon');
mail=document.getElementById('posta');
pismo=document.getElementById('poraka');

alphaExp = /^[a-zA-Zа-шА-Ш\ѓ\Ѓ\ѕ\Ѕ\ј\Ј\љ\Љ\њ\Њ\ќ\Ќ\џ\Џ\s]+$/;
numericExp = /^(\+\d)*[0-9\s\-\/\\]+$/;
testmail=/^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;

submitOK='true';

if (!imeto.value.match(alphaExp)) 
{
imeto.focus();
imeto.style.backgroundColor='#ebe2a3';
alert('Name is required');
submitOK='false';
}

else if (!phone.value.match(numericExp) || phone.value.length<6)
{
phone.focus();
phone.style.backgroundColor='#ebe2a3';
alert('"Phone number" is a required field');
submitOK='false';
}

else if (testmail.test(mail.value)==false)
{
mail.focus();
mail.style.backgroundColor='#ebe2a3';
alert('Must be a valid email address');
submitOK='false';
}

else if (pismo.value==0)
{
pismo.focus();
pismo.style.backgroundColor='#ebe2a3';
alert('Your Message');
submitOK='false';
}

if (submitOK=="false")
{
return false;
}
else
{
document.kontaktforma.submit();
}


}

function izbrisi() {
document.getElementById('ime').value='';
document.getElementById('telefon').value='';
document.getElementById('posta').value='';
document.getElementById('poraka').value='';
}



