function view_photo(a,b,c,d) {
 var par="width="+b+",height="+c+",status=no,toolbar=no,menubar=no,location=no";
 view_win=window.open("","photo",par);
 view_win.document.write("<html><head><title>"+d+"</title></head>");
 view_win.document.write("<img src='"+a+"' width="+b+" height="+c+" hspace=0 vspace=0 border=0 alt=''>");
 view_win.document.write("<body topmargin=0 marginheight=0 leftmargin=0 marginwidth=0 bgcolor=#ffffff>");
 view_win.document.write("</body></html>");
}

function check_feedback(obj1, obj2, obj3) {
  obj1 = document.getElementById(obj1);
  obj2 = document.getElementById(obj2);
  obj3 = document.getElementById(obj3);
  var error = '';
  if (!obj1.value) error += "Укажите Ваши фамилию, имя, отчество.\n";
  if (!obj3.value) error += "Укажите Ваш почтовый адрес.\n";
  if (!obj2.value) error += "Укажите Ваш вопрос.\n";
  if (error) {
    alert(error);
    return false
  }
  return true;
}