function test(){
	returnValue = false ;
	if (document.frm.mail.value=='' || document.frm.mail.value=='Ваш e-mail'){
		alert('Вы не указали свой e-mail');
		document.frm.mail.focus();}
	else if (document.frm.mail.value !='' && document.frm.mail.value.search(/([0-9a-zA-Z\.-_]+)@([0-9a-zA-Z\.-_]+)\.[a-zA-Z]{2,}\s*$/) < 0){
		alert('Таких e-mail не бывает!');
		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 ;
}
