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

function resetiraj()
{
imeto.style.backgroundColor='#851801';
phone.style.backgroundColor='#851801';
mail.style.backgroundColor='#851801';
pismo.style.backgroundColor='#851801';
}


function izbrisi() 
{
resetiraj();
imeto.value='';
phone.value='';
mail.value='';
pismo.value='';
}


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';
resetiraj();
if (!imeto.value.match(alphaExp)) 
{
imeto.focus();
imeto.style.backgroundColor='#f6821f';
alert('Ве молиме внесете го правилно Вашето име.');
submitOK='false';
}

else if (!phone.value.match(numericExp) || phone.value.length<6)
{
phone.focus();
phone.style.backgroundColor='#f6821f';
alert('Ве молиме внесете го правилно Вашиот телефонски број.');
submitOK='false';
}

else if (testmail.test(mail.value)==false)
{
mail.focus();
mail.style.backgroundColor='#f6821f';
alert('Ве молиме внесете ја правилно Вашата e-mail адреса.');
submitOK='false';
}

else if (pismo.value==0)
{
pismo.focus();
pismo.style.backgroundColor='#f6821f';
alert('Ве молиме внесете ја Вашата порака.');
submitOK='false';
}

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


}
