function testContacts()
{
	var the_name = document.contact_form.textfield;
	var the_phone = document.contact_form.textfield2;
	var the_mail = document.contact_form.textfield22;
	var the_question = document.contact_form.comment;
	if(the_name.value=='')
	{
		alert('Въведете Вашето име в полето!');
		the_name.focus();
		return;
	}
	if(the_mail.value=='')
	{
			alert('Въведете e-mail за връзка с Вас!');
			the_mail.focus();
			return;
	}
	if(the_question.value=='')
	{
			alert('Въведете своето запитване!');
			the_question.focus();
			return;
	}
	document.contact_form.submit();
}
function chksrch()
{
	var the_text = document.srch_frm.srch_prd;
	if(the_text.value=='')
	{
		alert('Не сте попълнили полето за търсене!');
		the_text.focus();
		return;
	}
	document.srch_frm.submit();
}

function chksrch_bott()
{
	var the_text = document.srch_frm_bott.srch_prd;
	if(the_text.value=='')
	{
		alert('Не сте попълнили полето за търсене!');
		the_text.focus();
		return;
	}
	document.srch_frm_bott.submit();
}