function checkfeed(){
h = document.feed;
if(h.name.value=='' || ((h.name.value).search(/[^a-zA-Z \-\.]/g) != -1) ){
alert('Please fill name field with Latin letters ');
h.name.focus(); 
return false;
}

if (h.mail.value == '' || ((h.mail.value).search(/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/) == -1) || h.mail.value.length < 7) 
{
	alert('Please enter valid E-mail address'); h.mail.focus(); return false;
}

if(h.mess.value==''){
alert('Empty message !');
h.mess.focus(); return false;}
return true;
}
function myreset()
{
document.feed.reset();
document.getElementById('res').innerHTML='';
} 





function checkfaq(){
h = document.feed;
if(h.first.value=='' || ((h.first.value).search(/[^a-zA-Z \-\.]/g) != -1) ){
alert('Please fill First name field with Latin letters ');
h.first.focus(); 
return false;
}
if(h.last.value=='' || ((h.last.value).search(/[^a-zA-Z \-\.]/g) != -1) ){
alert('Please fill Last name field with Latin letters ');
h.last.focus(); 
return false;
}

if (h.mail.value == '' || ((h.mail.value).search(/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/) == -1) || h.mail.value.length < 7) 
{
	alert('Please enter valid E-mail address'); h.mail.focus(); return false;
}

if(h.mess2.value==''){
alert('Empty Question !');
h.mess2.focus(); return false;}
return true;
}
function myreset()
{
document.feed.reset();
document.getElementById('res').innerHTML='';
} 



function checkbible(){
h = document.schform;
if(h.search.value==''){
alert('Please fill out the search field ');
h.search.focus(); 
return false;
}

return true;
}

