// JavaScript Document
	NS6 = (document.getElementById&&!document.all);
	IE = (document.all);
function  testData(){
	if(IE){
		comm=document.form1.comment.value;
	conface=document.form1.conface.value;
}
	if(NS6){
		comm=document.getElementById("form1").comment.value;
	conface=document.getElementById("form1").conface.value;
}
        b_comm=(comm == "")?1: 0;
    b_conface= (conface == "")?1: 0;
 if(b_comm  || b_conface) 
     {
		str="";
  		if(b_conface){str=str + " От кого\n"}
   		if(b_comm){str=str + "Комментарии\n"}
 window.alert("ОШИБКА\nИзвините, но Вы не заполнили поля\n" + str);
		return false;
     }
     else
     {
 window.alert("Сообщение отправлено. СПАСИБО.");
			return true;
     }
}
