function setclass(id){
 o=document.getElementById(id);
 if(o.className == 'menu_visibl')
  o.className = 'menu_hidn';
 else
  o.className = 'menu_visibl';
}

function hide(){
 o = document.getElementById("x");
 if(6!=(document.registr.fields_type.selectedIndex)){
  document.registr.others.disabled=true;
  o.style.display = "none";
 }else{document.registr.others.disabled=false;
  o.style.display = "";
 }
}

function open_checkpage() { 
 var login = document.registr.reqlogin.value.replace(/^\s+|\s+$/, '');
 if(5<login.length)
  window.open('/check_login/?login='+login,'','resizable=yes,menubar=no,status=yes,scrollbars=no,width=250,height=250');
 else
  alert("Логин должен содержать не менее шести символов!");
}

