/**
 * Job Search Block for Ukraine - Ukrainian ua_services_uk
 *
 * This is currently initialized in the page as follows:
 <script type="text/javascript">
 <!--
  var sJobSearch = { btn_type:"search" , btn_lbl:"Search" , kw_lbl:"Keywords" , cat_lbl:"Job Category" , loc_lbl:"Location" , div_lbl:"Employment Type" };
  JSEARCH.create( sJobSearch , "jsearch" , "lb01" );        
 //-->
 </script>
 */

var JSEARCH = {
  requiredAttrParams: ["btn_type" , "btn_lbl" , "kw_lbl" , "cat_lbl" , "loc_lbl" , "div_lbl" ],
  //declare some params - easier to reference later
  SO:null,
  objTarget:null,
  objParent:null,
  /**
   * Start the the Job Search dropdown(s) creation process
   *
   * @param object SO - an object containing the form parameters
   * @param string id - the document element ID to put the search into
   * @param string parentid - The top level 'containing element'
   */
  create: function( SO , id , parentid ) {
    //stop if the browser is too old
    if( !document.getElementById || !document.getElementsByTagName ) return;
    
    //initialize the object params
    this.SO = SO;
    this.objTarget = document.getElementById(id);
    this.objParent = document.getElementById(parentid);
    
    //hides the parent element
    DROP.setElementDisplay(parentid, "none");
    //adds this load function to the window.onload event
    var me = this; //closure
    var loadfn = function() {
      /*
      checks the params passed in against the DROP required params
      which is actually a smaller set than the 'required' params for
      this object
      */
      if (DROP.hasRequiredAttrParams(SO)) {
        //use the closure to reduce memory usage
        me.init();
      }
      //show the parent block again
      DROP.setElementDisplay(parentid, "block");
    };
    DROP.addLoadEvent(loadfn);
  },
  /**
   * Creates the dropdown list(s)
   */
  init: function(){
    //not sure why this check is here?
    if (typeof this.objTarget.innerHTML == "undefined" || typeof this.objParent.innerHTML == "undefined") { return; }
    
    var id = this.objTarget.id;
    //use an array - string concatenation is very slow for large strings of data
    var strOutPut = [];
    strOutPut = [
      '<form action="" method="post" accept-charset="utf-8,iso-8859-5">',
      ' <span class="wrapper">',
      '   <label for="' + id + '_keywords">' + this.SO.kw_lbl + '</label>',
      '   <input type="text" id="' + id + '_keywords" class="txt" maxlength="30" />',
      ' </span>',
      ' <span class="wrapper">',
      '   <label for="' + id + '_category" class="hide">' + this.SO.cat_lbl + '</label>',
      '   <select id="' + id + '_category">',
      '     <option value="">' + this.SO.cat_lbl + '</option>'
    ];
    //categories
    var strOptions = [];
    //optimize the loop by declaring a length var in the initial conditions
    for(var x = 0, len = this.CatItems.length; x < len ; ++x ) {
      var dat = this.CatItems[x]; //var used for convenience
      strOptions.push('     <option value="' + dat.val + '">' + dat.txt + '</option>');
    } 
    strOutPut = strOutPut.concat([
      strOptions.join("\n"),
      '   </select>',
      ' </span>',
      ' <span class="wrapper">',
      '   <label for="' + id + '_location" class="hide">' + this.SO.loc_lbl + '</label>',
      '   <select id="' + id + '_location" onchange="JSEARCH.changeArea(this);">',
      '     <option value="">' + this.SO.loc_lbl + '</option>'
    ]);
    //location
    strOptions = [];
    for( x = 0, len = this.LocItems.length; x < len; ++x ) {
      var dat = this.LocItems[x];
      strOptions.push('   <option value="' + dat.val + '">' + dat.txt + '</option>');
    }
    strOutPut = strOutPut.concat([
      strOptions.join("\n"),
      '   </select>',
      ' </span>',
      //add the areas dropdown
      ' <span class="wrapper">',
      '   <label for="' + id + '_areas" class="hide">Area</label>',
      '   <select id="' + id + '_areas">',
      '     <option value="">Any Area</option>',
      '   </select>',
      ' </span>',
      //done with areas dropdown
      ' <span class="wrapper">',
      '   <label for="' + id + '_division" class="hide">' + this.SO.loc_lbl + '</label>',
      '   <select id="' + id + '_division">',
      '     <option value="">' + this.SO.div_lbl + '</option>'
    ]);
    //division
    strOptions = [];
    for( x = 0, len = this.DivisionItems.length; x < len; ++x ) {
      var dat = this.DivisionItems[x];
      strOptions.push('   <option value="' + dat.val + '">' + dat.txt + '</option>');
    } 
    strOutPut = strOutPut.concat([
      strOptions.join("\n"),
      '   </select>',
      ' </span>',
      ' <a href="#" title="' + this.SO.btn_lbl + '" class="btn btn' + this.SO.btn_type + '" id="' + id + '_btn" target="_blank"><span>' + this.SO.btn_lbl + '</span></a>',
      '</form>'
    ]);

    this.objTarget.innerHTML = strOutPut.join("\n");

    objButton = document.getElementById( id + '_btn' );
    if( objButton ){
      addEvent( objButton , 'click' , JSEARCH.processClick , false );
    }

    addclass( this.objTarget , 'selector' );
    this.objParent.style.overflow = 'visible';
    this.objParent.style.overflow = '';
  },

  addOption: function(obj){
    var dat = obj.split("|");
    //strIdAttrib = id != '' ? ' id="' + id + '"' : '';
    return '<option value="' + dat[1] + '">' + dat[0] + '</option>';
  },
  
  changeArea:function(elem) {
    var id = elem.id.split("_")[0];
    var val = elem[elem.selectedIndex].value
    
    //get the area select element and trunc it
    var sel = document.getElementById(id + '_areas');
    sel.options.length = 0;;
    sel.options[0] = new Option('Any Area',0);
    if (val == "" || val == 0) { 
      return;
    } else {
      //get the object data based on the value of the dropdown
      var areas = this.AreaItems["area" + val];
      
      //fill the select box
      for (var i = 0, len = areas.length; i < len; ++i) {
        var optiontext = ""
        var dat = areas[i].txt.split(",");
        for (var j = 0, len1 = dat.length; j < len1; ++j) {
            optiontext = optiontext + String.fromCharCode(parseInt(dat[j]))
        }
        sel.options[sel.options.length] = new Option(optiontext,areas[i].val);
      }
    }
  },

  processClick: function(e){
    var curNode = window.event ? window.event.srcElement: e ? e.target : null;
    if( curNode == null ) return;

    divBase = ascendDOM( curNode , 'div' );
    if( divBase.nodeName.toLowerCase() != 'div' || !divBase.id ) return;

    strSelected = 'http://kcnua.jobseu.recruitadvantage.com/job/job_search_result.cfm';

    objKw = document.getElementById( divBase.id + '_keywords' );
    objCat = document.getElementById( divBase.id + '_category' );
    objLoc = document.getElementById( divBase.id + '_location' );
    objArea = document.getElementById( divBase.id + '_areas' );
    objDivision = document.getElementById( divBase.id + '_division' );

    strKw = objKw ? escape( objKw.value ) : '';
    strCat = objCat ? objCat.options[objCat.selectedIndex].value : '';
    strLoc = objLoc ? objLoc.options[objLoc.selectedIndex].value : '';
    strArea = objArea ? objArea.options[objArea.selectedIndex].value : '';
    strDivision = objDivision ? objDivision.options[objDivision.selectedIndex].value : '';
    

    if( strKw == '' && strCat == '' && strLoc == '' && strDivision == '' && strArea == '' ){
      curNode.href = 'http://kcnua.jobseu.recruitadvantage.com/job/job_search.cfm';
    }
    else {

             { 
              if (strCat == '' ){ (strCat = '0' );}
              if (strLoc == '') { (strLoc = '0');}
              if (strDivision == '') {(strDivision = '0' );}
              if (strArea == '') { (strArea = '0');}
             }
           curNode.href = strSelected + '?frm_loc_id=' + strLoc + '&frm_ind_id=' + strCat + '&frm_job_type_id=' + strDivision + '&frm_keyword=' + strKw + '&frm_area_id=' + strArea;

         }

    return true;
  },
  CatItems:[{"val":0,"txt":"&#1041;&#1091;&#1076;&#1100;-&#1103;&#1082;&#1080;&#1081;"},		
{"val":7685,"txt":"FMCG"},		
{"val":7668,"txt":"&#1040;&#1074;&#1090;&#1086;&#1084;&#1086;&#1073;&#1110;&#1083;&#1100;&#1085;&#1072; &#1169;&#1072;&#1083;&#1091;&#1079;&#1100;"},		
{"val":7667,"txt":"&#1040;&#1076;&#1084;&#1110;&#1085;&#1110;&#1089;&#1090;&#1088;&#1072;&#1094;&#1110;&#1103;/&#1089;&#1083;&#1091;&#1078;&#1073;&#1080; &#1087;&#1110;&#1076;&#1090;&#1088;&#1080;&#1084;&#1082;&#1080;"},		
{"val":7669,"txt":"&#1041;&#1072;&#1085;&#1082;&#1110;&#1074;&#1089;&#1100;&#1082;&#1080;&#1081; &#1089;&#1077;&#1082;&#1090;&#1086;&#1088; - &#1089;&#1087;&#1086;&#1078;&#1080;&#1074;&#1095;&#1080;&#1081; - &#1088;&#1086;&#1079;&#1076;&#1088;&#1110;&#1073;&#1085;&#1080;&#1081;"},		
{"val":7673,"txt":"&#1041;&#1072;&#1085;&#1082;&#1110;&#1074;&#1089;&#1100;&#1082;&#1080;&#1081; &#1089;&#1077;&#1082;&#1090;&#1086;&#1088;/&#1030;&#1085;&#1074;&#1077;&#1089;&#1090;&#1080;&#1094;&#1110;&#1111;"},		
{"val":7670,"txt":"&#1041;&#1072;&#1085;&#1082;&#1110;&#1074;&#1089;&#1100;&#1082;&#1080;&#1081; &#1089;&#1077;&#1082;&#1090;&#1086;&#1088;/&#1050;&#1086;&#1088;&#1087;&#1086;&#1088;&#1072;&#1090;&#1080;&#1074;&#1085;&#1080;&#1081;/&#1030;&#1085;&#1089;&#1090;&#1080;&#1090;&#1091;&#1094;&#1110;&#1081;&#1085;&#1080;&#1081;"},		
{"val":7672,"txt":"&#1041;&#1072;&#1085;&#1082;&#1110;&#1074;&#1089;&#1100;&#1082;&#1080;&#1081; &#1089;&#1077;&#1082;&#1090;&#1086;&#1088;/&#1059;&#1087;&#1088;&#1072;&#1074;&#1083;&#1110;&#1085;&#1085;&#1103; &#1072;&#1082;&#1090;&#1080;&#1074;&#1072;&#1084;&#1080;/&#1062;&#1110;&#1085;&#1085;&#1110; &#1087;&#1072;&#1087;&#1077;&#1088;&#1080;"},		
{"val":7674,"txt":"&#1041;&#1072;&#1085;&#1082;&#1110;&#1074;&#1089;&#1100;&#1082;&#1080;&#1081; &#1089;&#1077;&#1082;&#1090;&#1086;&#1088;/&#1059;&#1087;&#1088;&#1072;&#1074;&#1083;&#1110;&#1085;&#1085;&#1103; &#1087;&#1088;&#1080;&#1074;&#1072;&#1090;&#1085;&#1080;&#1084; &#1082;&#1072;&#1087;&#1110;&#1090;&#1072;&#1083;&#1086;&#1084;"},		
{"val":7675,"txt":"&#1041;&#1072;&#1085;&#1082;&#1110;&#1074;&#1089;&#1100;&#1082;&#1080;&#1081; &#1089;&#1077;&#1082;&#1090;&#1086;&#1088;/&#1060;&#1110;&#1085;&#1072;&#1085;&#1089;&#1086;&#1074;&#1110; &#1087;&#1086;&#1089;&#1083;&#1091;&#1075;&#1080;"},		
{"val":7671,"txt":"&#1041;&#1072;&#1085;&#1082;&#1110;&#1074;&#1089;&#1100;&#1082;&#1080;&#1081; &#1089;&#1077;&#1082;&#1090;&#1086;&#1088;/&#1060;&#1110;&#1085;&#1072;&#1085;&#1089;&#1091;&#1074;&#1072;&#1085;&#1085;&#1103;"},		
{"val":7676,"txt":"&#1041;&#1110;&#1086;&#1090;&#1077;&#1093;&#1085;&#1086;&#1083;&#1086;&#1075;&#1110;&#1111;/&#1060;&#1072;&#1088;&#1084;&#1072;&#1094;&#1077;&#1074;&#1090;&#1080;&#1082;&#1072;"},		
{"val":7666,"txt":"&#1041;&#1091;&#1093;&#1075;&#1072;&#1083;&#1090;&#1077;&#1088;&#1089;&#1100;&#1082;&#1080;&#1081; &#1086;&#1073;&#1083;&#1110;&#1082;"},		
{"val":7689,"txt":"&#1042;&#1072;&#1078;&#1082;&#1072; &#1087;&#1088;&#1086;&#1084;&#1080;&#1089;&#1083;&#1086;&#1074;&#1110;&#1089;&#1090;&#1100;"},		
{"val":7694,"txt":"&#1042;&#1080;&#1088;&#1086;&#1073;&#1085;&#1080;&#1094;&#1090;&#1074;&#1086;"},		
{"val":7681,"txt":"&#1045;&#1083;&#1077;&#1082;&#1090;&#1088;&#1086;&#1085;&#1085;&#1077; &#1079;&#1073;&#1080;&#1088;&#1072;&#1085;&#1085;&#1103;"},		
{"val":7687,"txt":"&#1047;&#1072;&#1075;&#1072;&#1083;&#1100;&#1085;&#1077; &#1091;&#1087;&#1088;&#1072;&#1074;&#1083;&#1110;&#1085;&#1085;&#1103;"},		
{"val":7691,"txt":"&#1030;&#1085;&#1092;&#1086;&#1084;&#1072;&#1094;&#1110;&#1081;&#1085;&#1110; &#1090;&#1077;&#1093;&#1085;&#1086;&#1083;&#1086;&#1075;&#1110;&#1111;"},		
{"val":7697,"txt":"&#1030;&#1085;&#1096;&#1077;"},		
{"val":7677,"txt":"&#1050;&#1086;&#1084;&#1087;'&#1102;&#1090;&#1077;&#1088;&#1080;/&#1055;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1085;&#1077; &#1079;&#1072;&#1073;&#1077;&#1079;&#1087;&#1077;&#1095;&#1077;&#1085;&#1085;&#1103;"},		
{"val":7678,"txt":"&#1050;&#1086;&#1085;&#1089;&#1072;&#1083;&#1090;&#1080;&#1085;&#1075;"},		
{"val":7692,"txt":"&#1051;&#1077;&#1075;&#1082;&#1072; &#1087;&#1088;&#1086;&#1084;&#1080;&#1089;&#1083;&#1086;&#1074;&#1110;&#1089;&#1090;&#1100;"},		
{"val":7693,"txt":"&#1051;&#1086;&#1075;&#1110;&#1089;&#1090;&#1080;&#1082;&#1072;"},		
{"val":7695,"txt":"&#1052;&#1072;&#1088;&#1082;&#1077;&#1090;&#1080;&#1085;&#1075;"},		
{"val":7680,"txt":"&#1054;&#1089;&#1074;&#1110;&#1090;&#1072;"},		
{"val":7688,"txt":"&#1054;&#1093;&#1086;&#1088;&#1086;&#1085;&#1072; &#1079;&#1076;&#1086;&#1088;&#1086;&#1074;'&#1103;"},		
{"val":7682,"txt":"&#1055;&#1110;&#1076;&#1073;&#1110;&#1088; &#1087;&#1077;&#1088;&#1089;&#1086;&#1085;&#1072;&#1083;&#1091;/&#1055;&#1088;&#1072;&#1094;&#1077;&#1074;&#1083;&#1072;&#1096;&#1090;&#1091;&#1074;&#1072;&#1085;&#1085;&#1103;"},		
{"val":7683,"txt":"&#1055;&#1088;&#1086;&#1077;&#1082;&#1090;&#1091;&#1074;&#1072;&#1085;&#1085;&#1103; &#1110; &#1073;&#1091;&#1076;&#1110;&#1074;&#1085;&#1080;&#1094;&#1090;&#1074;&#1086;"},		
{"val":7679,"txt":"&#1057;&#1083;&#1091;&#1078;&#1073;&#1072; &#1087;&#1110;&#1076;&#1090;&#1088;&#1080;&#1084;&#1082;&#1080; &#1082;&#1083;&#1110;&#1108;&#1085;&#1090;&#1110;&#1074;"},		
{"val":7696,"txt":"&#1058;&#1088;&#1072;&#1085;&#1089;&#1087;&#1086;&#1088;&#1090;&#1091;&#1074;&#1072;&#1085;&#1085;&#1103; &#1084;&#1072;&#1090;&#1077;&#1088;&#1110;&#1072;&#1083;&#1110;&#1074;"},		
{"val":7690,"txt":"&#1059;&#1087;&#1088;&#1072;&#1074;&#1083;&#1110;&#1085;&#1085;&#1103; &#1087;&#1077;&#1088;&#1089;&#1086;&#1085;&#1072;&#1083;&#1086;&#1084;"},		
{"val":7684,"txt":"&#1060;&#1110;&#1085;&#1072;&#1085;&#1089;&#1080;"},		
{"val":7686,"txt":"&#1061;&#1072;&#1088;&#1095;&#1086;&#1074;&#1072; &#1087;&#1088;&#1086;&#1084;&#1080;&#1089;&#1083;&#1086;&#1074;&#1110;&#1089;&#1090;&#1100;"}
],
LocItems:[
{"val": 0,    "txt": "&#1041;&#1091;&#1076;&#1100;-&#1103;&#1082;&#1080;&#1081;"},			
{"val": 1,    "txt": "&#1050;&#1080;&#1111;&#1074;&#1089;&#1100;&#1082;&#1072; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100;"},		
{"val": 2,    "txt": "&#1042;&#1110;&#1085;&#1085;&#1080;&#1094;&#1100;&#1082;&#1072; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100;"},		
{"val": 3,    "txt": "&#1044;&#1085;&#1110;&#1087;&#1088;&#1086;&#1087;&#1077;&#1090;&#1088;&#1086;&#1074;&#1089;&#1100;&#1082;&#1072; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100;"},		
{"val": 4,    "txt": "&#1044;&#1086;&#1085;&#1077;&#1094;&#1100;&#1082;&#1072; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100;"},		
{"val": 5,    "txt": "&#1046;&#1080;&#1090;&#1086;&#1084;&#1080;&#1088;&#1089;&#1100;&#1082;&#1072; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100;"},		
{"val": 6,    "txt": "&#1047;&#1072;&#1087;&#1086;&#1088;&#1110;&#1079;&#1100;&#1082;&#1072; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100;"},		
{"val": 7,    "txt": "&#1030;&#1074;&#1072;&#1085;&#1086;-&#1060;&#1088;&#1072;&#1085;&#1082;&#1110;&#1074;&#1089;&#1100;&#1082;&#1072; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100;"},		
{"val": 8,    "txt": "&#1050;&#1110;&#1088;&#1086;&#1074;&#1086;&#1075;&#1088;&#1072;&#1076;&#1089;&#1100;&#1082;&#1072; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100;"},		
{"val": 9,    "txt": "&#1051;&#1091;&#1075;&#1072;&#1085;&#1089;&#1100;&#1082;&#1072; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100;"},		
{"val": 10,    "txt": "&#1042;&#1086;&#1083;&#1080;&#1085;&#1089;&#1100;&#1082;&#1072; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100;"},		
{"val": 11,    "txt": "&#1051;&#1100;&#1074;&#1110;&#1074;&#1089;&#1100;&#1082;&#1072; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100;"},		
{"val": 12,    "txt": "&#1052;&#1080;&#1082;&#1086;&#1083;&#1072;&#1111;&#1074;&#1089;&#1100;&#1082;&#1072; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100;"},		
{"val": 13,    "txt": "&#1054;&#1076;&#1077;&#1089;&#1100;&#1082;&#1072; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100;"},		
{"val": 14,    "txt": "&#1055;&#1086;&#1083;&#1090;&#1072;&#1074;&#1089;&#1100;&#1082;&#1072; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100;"},		
{"val": 15,    "txt": "&#1056;&#1110;&#1074;&#1085;&#1077;&#1085;&#1089;&#1100;&#1082;&#1072; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100;"},		
{"val": 16,    "txt": "&#1057;&#1091;&#1084;&#1089;&#1100;&#1082;&#1072; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100;"},		
{"val": 17,    "txt": "&#1058;&#1077;&#1088;&#1085;&#1086;&#1087;&#1110;&#1083;&#1100;&#1089;&#1100;&#1082;&#1072; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100;"},		
{"val": 18,    "txt": "&#1047;&#1072;&#1082;&#1072;&#1088;&#1087;&#1072;&#1090;&#1089;&#1100;&#1082;&#1072; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100;"},		
{"val": 19,    "txt": "&#1061;&#1072;&#1088;&#1082;&#1110;&#1074;&#1089;&#1100;&#1082;&#1072; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100;"},		
{"val": 20,    "txt": "&#1061;&#1077;&#1088;&#1089;&#1086;&#1085;&#1089;&#1100;&#1082;&#1072; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100;"},		
{"val": 21,    "txt": "&#1061;&#1084;&#1077;&#1083;&#1100;&#1085;&#1080;&#1094;&#1100;&#1082;&#1072; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100;"},		
{"val": 22,    "txt": "&#1063;&#1077;&#1088;&#1082;&#1072;&#1089;&#1100;&#1082;&#1072; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100;"},		
{"val": 23,    "txt": "&#1063;&#1077;&#1088;&#1085;&#1110;&#1074;&#1077;&#1094;&#1100;&#1082;&#1072; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100;"},		
{"val": 24,    "txt": "&#1063;&#1077;&#1088;&#1085;&#1110;&#1075;&#1110;&#1074;&#1089;&#1100;&#1082;&#1072; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100;"},		
{"val": 25,    "txt": "&#1063;&#1077;&#1088;&#1085;&#1110;&#1074;&#1094;&#1110;"},		
{"val": 26,    "txt": "&#1063;&#1077;&#1088;&#1085;&#1110;&#1075;&#1110;&#1074;"},		
{"val": -1,    "txt": "&#1052;&#1110;&#1078;&#1085;&#1072;&#1088;&#1086;&#1076;&#1085;&#1080;&#1081;"}
],
  AreaItems:{
   
   "area1":[
      {"val":564,"txt":"1050,1080,1111,1074,1089,1100,1082,1072,32,1086,1073,1083,1072,1089,1090,1100"}
    ], 
     "area2":[
      {"val":565,"txt":"1042,1110,1085,1085,1080,1094,1100,1082,1072,32,1086,1073,1083,1072,1089,1090,1100"} 
    ],
     "area3":[
      {"val":566,"txt":"1044,1085,1110,1087,1088,1086,1087,1077,1090,1088,1086,1074,1089,1100,1082,1072,32,1086,1073,1083,1072,1089,1090,1100"}
    ],
     "area4":[
      {"val":567,"txt":"1044,1086,1085,1077,1094,1100,1082,1072,32,1086,1073,1083,1072,1089,1090,1100"}
    ],
     "area5":[
      {"val":568,"txt":"1046,1080,1090,1086,1084,1080,1088,1089,1100,1082,1072,32,1086,1073,1083,1072,1089,1090,1100"}
    ],
     "area6":[
      {"val":569,"txt":"1030,1074,1072,1085,1086,45,1060,1088,1072,1085,1082,1110,1074,1089,1100,1082,1072,32,1086,1073,1083,1072,1089,1090,1100"}
    ],
     "area7":[
      {"val":570,"txt":"1030,1074,1072,1085,1086,45,1060,1088,1072,1085,1082,1110,1074,1089,1100,1082,1072,32,1086,1073,1083,1072,1089,1090,1100"}
    ],
     "area8":[
      {"val":571,"txt":"1050,1110,1088,1086,1074,1086,1075,1088,1072,1076,1089,1100,1082,1072,32,1086,1073,1083,1072,1089,1090,1100"}
    ],
     "area9":[
      {"val":572,"txt":"1051,1091,1075,1072,1085,1089,1100,1082,1072,32,1086,1073,1083,1072,1089,1090,1100"}
    ],
         "area10":[
      {"val":573,"txt":"1042,1086,1083,1080,1085,1089,1100,1082,1072,32,1086,1073,1083,1072,1089,1090,1100"}
    ],
         "area11":[
      {"val":574,"txt":"1051,1100,1074,1110,1074,1089,1100,1082,1072,32,1086,1073,1083,1072,1089,1090,1100"}
    ],
         "area12":[
      {"val":575,"txt":"1052,1080,1082,1086,1083,1072,1111,1074,1089,1100,1082,1072,32,1086,1073,1083,1072,1089,1090,1100"}
    ],
         "area13":[
      {"val":576,"txt":"1054,1076,1077,1089,1100,1082,1072,32,1086,1073,1083,1072,1089,1090,1100"}
    ],
         "area14":[
      {"val":577,"txt":"1055,1086,1083,1090,1072,1074,1089,1100,1082,1072,32,1086,1073,1083,1072,1089,1090,1100"}
    ],
         "area15":[
      {"val":578,"txt":"1056,1110,1074,1085,1077,1085,1089,1100,1082,1072,32,1086,1073,1083,1072,1089,1090,1100"}
    ],
         "area16":[
      {"val":579,"txt":"1057,1091,1084,1089,1100,1082,1072,32,1086,1073,1083,1072,1089,1090,1100"}
    ],
             "area17":[
      {"val":580,"txt":"1057,1091,1084,1089,1100,1082,1072,32,1086,1073,1083,1072,1089,1090,1100"}
    ],
             "area18":[
      {"val":581,"txt":"1057,1091,1084,1089,1100,1082,1072,32,1086,1073,1083,1072,1089,1090,1100"}
    ],
             "area19":[
      {"val":582,"txt":"1058,1077,1088,1085,1086,1087,1110,1083,1100,1089,1100,1082,1072,32,1086,1073,1083,1072,1089,1090,1100"}
    ],
             "area20":[
      {"val":583,"txt":"1047,1072,1082,1072,1088,1087,1072,1090,1089,1100,1082,1072,32,1086,1073,1083,1072,1089,1090,1100"}
    ],
             "area21":[
      {"val":584,"txt":"1061,1072,1088,1082,1110,1074,1089,1100,1082,1072,32,1086,1073,1083,1072,1089,1090,1100"}
    ],
           "area22":[
      {"val":585,"txt":"1061,1077,1088,1089,1086,1085,1089,1100,1082,1072,32,1086,1073,1083,1072,1089,1090,1100"}
    ],
             "area23":[
      {"val":586,"txt":"1061,1084,1077,1083,1100,1085,1080,1094,1100,1082,1072,32,1086,1073,1083,1072,1089,1090,1100"}
    ],
             "area24":[
      {"val":587,"txt":"1063,1077,1088,1082,1072,1089,1100,1082,1072,32,1086,1073,1083,1072,1089,1090,1100"}
    ],
           "area25":[
      {"val":588,"txt":"1063,1077,1088,1085,1110,1074,1077,1094,1100,1082,1072,1086,32,1073,1083,1072,1089,1090,1100"}
    ],
             "area26":[
      {"val":589,"txt":"1063,1077,1088,1085,1110,1075,1110,1074,1089,1100,1082,1072,1086,1073,32,1083,1072,1089,1090,1100"}
    ]
},
  DivisionItems:[
{"val":  0, "txt": "&#1041;&#1091;&#1076;&#1100;-&#1103;&#1082;&#1080;&#1081;"},	
{"val":  2, "txt": "&#1050;&#1086;&#1085;&#1090;&#1088;&#1072;&#1082;&#1090;&#1085;&#1072;"},	
{"val":  3, "txt": "&#1053;&#1077;&#1087;&#1086;&#1074;&#1085;&#1080;&#1081; &#1088;&#1086;&#1073;&#1086;&#1095;&#1080;&#1081; &#1076;&#1077;&#1085;&#1100;"},	
{"val":  4, "txt": "&#1055;&#1086;&#1089;&#1090;&#1110;&#1081;&#1085;&#1072;"},	
{"val":  5, "txt": "&#1057;&#1077;&#1079;&#1086;&#1085;&#1085;&#1072;"},	
{"val":  6, "txt": "&#1058;&#1080;&#1084;&#1095;&#1072;&#1089;&#1083;&#1074;&#1072;"},	
{"val":  7, "txt": "&#1042;&#1085;&#1091;&#1090;&#1088;&#1110;&#1096;&#1085;&#1103; &#1074;&#1072;&#1082;&#1072;&#1085;&#1089;&#1110;&#1103;"}
  ]
};
