function Validate(){var a='';if(document.contact.f3.value.replace(/ /g,"").length < 3){SetColor(1,'#f00');a="<br />Please enter a valid name. It must be 3 letters or more."}else{SetColor(1,'#333')}if(!RegExp('(\\w+@[a-zA-Z_]+?\\.[a-zA-Z]{2,6})').test(document.contact.f5.value)){SetColor(3,'#f00');a+="<br />Please enter a valid e-mail address."}else{SetColor(3,'#333')}if(document.contact.f7.value.replace(/ /g,"").length < 3){SetColor(5,'#f00');a+="<br />Please enter a valid message. It must be 3 letters or more."}else{SetColor(5,'#333')}if(a!=""){document.getElementById('fbc').innerHTML='<p id="fb1"><strong>Feedback:</strong>'+a+'</p>';return false}else{return true}}
function SetColor(a,b){document.getElementsByTagName("label")[a].style.color=b}