function test(){
	returnValue = false ;
	if (document.frm.mail.value=='' || document.frm.mail.value=='Ваш e-mail или телефон'){
		alert('Вы не указали ни е-маил, ни телефон');
		document.frm.mail.focus();}
	else if (document.frm.name.value=='' || document.frm.name.value=='Ваше имя'){
		alert('Вы не указали свое имя');
		document.frm.name.focus();}
	else if (document.frm.mess.value=='' || document.frm.mess.value=='Текст сообщения'){
		alert('Нет текста сообщения');//
		document.frm.mess.focus();}
	else{
		document.frm.setAttribute('target','myframe');
		document.frm.add.value = ' Ждите... ';
		returnValue = true ;}
	return returnValue ;
}
