function check(which){
 var frm=eval('document.forms.'+which)
 var la=0
 for (var e = 0; e < frm.elements.length; e++){
  var el = frm.elements[e];
  if (el.tc){
   if (!la && el.tc=='email'  && (el.value.indexOf("@")<0 || el.value.indexOf(".")<1)){ alert('Неверный email'); la=1 }
   if (!la && el.tc=='пароль') var password1=el.value
   if (!la && el.tc=='пароль2' && password1!=el.value){ alert('Пароли не совпадают'); la=1 }
   if (!la && el.value==""){
     alert('Пустое поле "'+el.tc+'"')
     la=1;
   }
  }
 }
 return (!la)?true:false;
}


function wo(hrf, width, height){
 window.open(hrf,'','resizable=yes,scrollbars=yes,width='+width+',height='+height);
}
