<!--
var prop;
var current_show_text_id;
var current_clients_block_height;




function open_close_bul_content()
{
  b_content=document.getElementById('right');
  b=document.getElementById('bul');

  Jet_DeleteScenario();

  if (b_content.clientWidth == 0)
  {
     //b.style.zIndex=100;
     jet_move_scenario[0]='clients_text_open_scene_1()';
  }
  else
  {
     //b.style.zIndex=49;
     jet_move_scenario[0]='clients_text_close_scene_1()';
  }
  Jet_PlayScenario();   
  
}

function clients_text_open_scene_1()
{
   jet_move_id[0]='right';
   jet_move_property[0]='width';
   jet_move_value_current[0]=0;
   jet_move_value_new[0]=60;
   jet_move_value_dimension[0]='%';
   jet_move_end_flag[0]=0;   
}

function clients_text_close_scene_1()
{
   jet_move_id[0]='right';
   jet_move_property[0]='width';
   jet_move_value_current[0]=60;
   jet_move_value_new[0]=0;
   jet_move_value_dimension[0]='%';
   jet_move_end_flag[0]=0;   
}




-->