function test(){
	returnValue = false ;
	if (document.frm.mail.value==''){
		alert('Вы не указали свой e-mail');//
		document.frm.mail.focus();}
	else if (document.frm.mail.value !='' && document.frm.mail.value.search(/([0-9a-z]+(-|_|\.)*)+@([0-9a-z]+(-|_|\.)*)+\.[a-zA-Z]{2,}\s*$/) < 0){
		alert('Проверьте введеный адрес электронной почты.\nЭто неверный адрес.');
		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 ;
}

function doLoad(numimg,Width,Height) {
	Width+=20;
	Height+=20;
	if (screen.availWidth){
		b=(screen.availHeight - Height < 0) ? 0:(screen.availHeight - Height)/2-50;
		a=(screen.availWidth -Width < 0) ? 0:(screen.availWidth - Width)/2-50;
	}else{
		a=0;
		b=0;
	}
  	window.open(numimg,'','menubar=no,scrollbars=no,resizable=no,width='+Width+',height='+Height+',top='+b+',left='+a);
	return false ;
}

