function SyncSelects()
{ClearAllDirSel();rootDirSel=document.all['edt_posting_section_dir_id'];dir_sel_idx=rootDirSel.options[rootDirSel.selectedIndex].value;FillAllDirSel(dir_struct[dir_sel_idx]);}
function ClearAllDirSel()
{allDirSel=document.all['edt_posting_directory_id'];allDirSel_len=allDirSel.options.length;for(i=allDirSel_len;i>1;i--){allDirSel.remove(1);}}
function FillAllDirSel(options)
{for(i=0;i<options.length;i++){var optn=document.createElement("option");optn.value=options[i][0];optn.text=options[i][1];document.all['edt_posting_directory_id'].options.add(optn);}}
