
     function show_frame(){
          if(document.all['framecontainer']) st=document.all['framecontainer'].style;
          st.display="block";
          st.top=0;
          st.left=0;
          st.width=0;
          st.height=0;
     }
     function viewdiv(div) {
          tf_div=document.all[div];
          if(tf_div) {
               tf_div.style.display="block";
               tf_div.style.top=100+document.body.scrollTop;
               tf_div.style.left="30%";
          }
          else alert("Ошибка. Форма диалога не загружена");
     }
function show_div(id){
     zind=zind+1;
     if(!document.all[id]) alert('Div "'+id+'" не найден');
     else {document.all[id].style.visibility="visible";document.all[id].style.zIndex=zind;}
}

function close_div(id){
     if(!document.all[id]) alert('Div "'+id+'" не найден');
     else document.all[id].style.visibility="hidden";
}
