function ll_sort(){
 var lst=document.getElementById("ll");
 var count=lst.childNodes.length;
 var s=new Array();
 var r=new Array();
 z=0;
 sz=0;
 while(z<count){
  if(lst.childNodes[z].id){
   s[lst.childNodes[z].id]=lst.childNodes[z].innerHTML;
   r[lst.childNodes[z].id]="p000".substring(0,4-String(sz).length)+String(sz);
   sz++;
  }
  z++;
 }
 z=0;
 sz=0;
 while(z<count){
  if(lst.childNodes[z].id){
   szid="p000".substring(0,4-String(sz).length)+String(sz);
   lst.childNodes[z].innerHTML=s[szid];
   lst.childNodes[z].id=r[szid];
   sz++;
  }
  z++;
 }
 h=document.getElementById("s1").innerHTML;
 document.getElementById("s1").innerHTML=document.getElementById("s2").innerHTML;
 document.getElementById("s2").innerHTML=h;
}
