function test(frm_find) {
if(document.frm_find.keyword.value=='') { alert("Введите ключевое слово!"); document.frm_find.keyword.focus(); return false; }
if(document.frm_find.keyword.value.length<=2) { alert("Минимальная длина запроса 3 символа"); document.frm_find.keyword.focus(); return false; }
}
function check_reg(frm_reg) {
if(document.frm_reg.cl_name.value=='') { alert("Введите Фамилию Имя Отчество!"); document.frm_reg.cl_name.focus(); return false; }
if(document.frm_reg.phone.value=='') { alert('Введите информацию в поле "Контактный телефон"'); document.frm_reg.phone.focus(); return false; }

p_phone=document.frm_reg.phone.value;
if((p_phone!="")&&(p_phone.length<=5))
{ alert("Телефон не может быть короче 6 символов"); document.frm_reg.phone.focus(); return false; }

if(document.frm_reg.email.value=='') { alert('Введите информацию в поле "E-mail"'); document.frm_reg.email.focus(); return false; }

p_email = document.frm_reg.email.value.toString();
if (p_email != "") {
t = p_email.indexOf("@");
if((p_email.indexOf(".") == -1) || (t == -1) || (t < 1) || (t > p_email.length - 5) || (p_email.charAt(t - 1) == '.') || (p_email.charAt(t + 1) == '.')) {
alert("Некорректно указан E-mail!");
document.frm_reg.email.focus();
return false;
}
}

if(document.frm_reg.adress.value=='') { alert('Введите информацию в поле "Адрес доставки"'); document.frm_reg.adress.focus(); return false; }

if(document.getElementById('del1').checked==false && document.getElementById('del2').checked==false) { alert("Выберите тип доставки!"); return false; }

}

