function changeMenuFlashSize(is) {
    if(is) {
        if(document.getElementById('flashMenuMain')) {
            document.getElementById('flashMenuMain').style.height="520px";
        }
        if(document.getElementById('flashMenuSide')) {
            document.getElementById('flashMenuSide').style.height="520px";
            document.getElementById('flashMenuSide').style.width="949px";
        }
    } else {
        if(document.getElementById('flashMenuMain')) {
            document.getElementById('flashMenuMain').style.height="255px";
        }
        if(document.getElementById('flashMenuSide')) {
            document.getElementById('flashMenuSide').style.height="255px";
            document.getElementById('flashMenuSide').style.width="156px";
        }
        
    }
}



                var solutions = new Array();
                var lform = new Array();
                
                solutions['klient'] = new Array(
                    "finansowanie/restrukturyzacja zobowiązań wymagalnych",
                    "leasing",
                    "finansowanie sprzętu medycznego",
                    "pożyczka",
                    "finansowanie zobowiązań publiczno-prawnych",
                    "finansowanie zobowiązań pracowniczych",
                    "factoring dla szpitali"
                    );
                    
                
                solutions['wierzyciel'] = new Array(
                    "sprzedaż wierzytelności",
                    "faktoring",
                    "poręczenie",
                    "rating",
                    "inne"
                    );
                
                lform['klient'] = new Array(
                    "SP ZOZ",
                    "NZOZ",
                    "inna"
                    );
                    
                lform['wierzyciel'] = new Array(
                    "zoz-y i szpitale",
                    "PKP",
                    "jednostki samorządu terytorialnego",
                    "oświata",
                    "zakłady budżetowe",
                    "sp. z o.o./sa",
                    "sc",
                    "sj",
                    "osoba fizyczna prowadząca działalność gospodarczą"
                    );
                    
           
              
              function switchBox(ver, list) {
              
              }
              
              function switchForm(ver) {
                
              
                var list = solutions[ver]
                var box = document.forms['contact'].solution;
                
                box.options.length = 0;
             
                for(i=0;i<list.length;i+=1) {
                    box.options[i] = new Option(list[i],list[i]);
                }
                var list = lform[ver]
                var box = document.forms['contact'].debtor;
                box.options.length = 0;
                for(i=0;i<list.length;i+=1) {
                    box.options[i] = new Option(list[i],list[i]);
                }
              }