        var LangPage = "ru";
        
        function LookWin(put,ww,hh){               
               left1 = (screen.availWidth - ww)/2
               top1 = (screen.availHeight - hh)/2             
               eval("window.open(\'"+put+"\',\'_blank',\'status=yes,top="+top1+",left="+left1+",toolbar=no,scrollbars=yes,directories=no,menubar=no,resizable=yes,width="+ww+",height="+hh+"\')"); 
        }
        
        function submitForm(nform,ww,hh){
     
	          left1 = (screen.availWidth - ww)/2;
              top1 = (screen.availHeight - hh)/2;
              
	          eval("window.open('about:blank', 'submit', 'top='+top1+',left='+left1+',toolbar=no,scrollbars=yes,directories=no,menubar=no,resizable=yes,width="+ww+",height="+hh+"');");
	          nform.target = 'submit';
	          nform.method = 'post';
        }
        
        function isEmpty(str) {
                 
                 for (var i = 0; i < str.length; i++)
                      if (" " != str.charAt(i))
                          return false;
                 
                 return true;
        }
        
        function checkStrForm(nameform,nameinput,msg){
                 
                 f = eval("document."+nameform+"."+nameinput); 
                 
                 if (isEmpty(f.value)) { alert(msg); return false; }
                 
                 return true;
        }  
        
        function leftmenu_start(NameM){
                 
                 document.write(''+
                 '<Table Width=98% CellPadding=0 CellSpacing=0 Border=0>'+
                 '<Tr Valign=top>'+
                 '<Td Width=1 BackGround="images/leftbg1-1.gif"><Img Src="images/pixel.gif" Width=1 Height=1 Border=0 Alt=""></Td>'+
                 '<Td BackGround="images/leftbg1-2.gif">'+
                 '<Table Border=0 CellPadding=2 CellSpacing=0>'+
                 '<Tr Height=25 Valign=bottom><Td class=listred>&nbsp;&nbsp;'+NameM+'</Td></Tr>'+
                 '<Tr Valign=top><Td>');
        }
        
        function leftmenu_end(){
        
                 document.write(''+
                 '</Td></Tr>'+
                 '</Table></Td>'+
                 '<Td Width=1 BackGround="images/leftbg1-1.gif"><Img Src="images/pixel.gif" Width=1 Height=1 Border=0 Alt=""></Td>'+
                 '</Tr>'+
                 '</Table>');
        }   
    
    