var customOnSubmit = new Array();

function sel(id){
   //window.open("detail.php?id="+id);
   document.location= "detail.php?id="+id;
}
function set_num(id){
      width = document.getElementById(id).value;
         width = width.match(/[0-9\.]+\%?/);
         if(width==null){
            width="";
         }
            document.getElementById(id).value=width;
}
function reorder(tp,ord,order_type,oper){
   document.location="index2.php?reorder=1&type="+tp+"&order="+ord+"&order_type="+order_type+"&oper="+oper;
}
function add(){
   ret=true;
   if(ret){
      if((document.getElementById('addr').value=="")||(document.getElementById('addr').value==null)){
         alert("Ââåäèòå, ïîæàëóéñòà, àäðåñ.");
         ret=false;
      }
   }
   if(ret){
      if((document.getElementById('desc').value=="")||(document.getElementById('desc').value==null)){
         alert("Ââåäèòå, ïîæàëóéñòà, îïèñàíèå îáúåêòà.");
         ret=false;
      }
   }
   if(ret){
      if((document.getElementById('cont').value=="")||(document.getElementById('cont').value==null)){
         alert("Ââåäèòå, ïîæàëóéñòà, âàøè êîíòàêòíûå òåëåôîíû, e-mail, ...");
         ret=false;
      }
   }
   if(ret){
      document.getElementById("add_form").submit();
   }

}

function searchFormSubmit(form) {
    for (i = 0; i < customOnSubmit.length; i ++) {
        customOnSubmit[i](form);
    }
    return true;
}
