// JavaScript Document
var   beginMoving1=false;   
  var   sourceObj1=null;   
  var   objectObj1=null;   
  var   objectObj12=null;   
  function   MouseDownToMove1(obj){   
  obj.style.zIndex=1;   
  obj.mouseDownY=event.clientY;   
  obj.mouseDownX=event.clientX;   
  beginMoving1=true;   
  obj.setCapture();   
  sourceObj1=obj;   
  objectObj1=null;   
  }   
    
  function   MouseMoveToMove1(obj){   
          if(!beginMoving1)   return   false;   
  obj.style.top   =   (event.clientY-obj.mouseDownY);   
  obj.style.left   =   (event.clientX-obj.mouseDownX);   
  }   
  function   MouseUpToMove1(obj){   
  if(!beginMoving1)   return   false;   
  obj.releaseCapture();   
  obj.style.top=0;   
  obj.style.left=0;   
  obj.style.zIndex=0;   
  beginMoving1=false;   
  window.setTimeout("swapFun()",20);   
  }   
    
  function   MouseOverFun1(obj)   
  {   
  if(obj==sourceObj1)   return   false;   
  objectObj1=obj;   
  }   
    
  function   MouseOverFun21(obj)   
  {   
  objectObj12=obj;   
  }   
    
  function   swapFun1()   
  {   
  if(sourceObj1!=null   &&   objectObj1!=null)   objectObj1.insertAdjacentElement("beforeBegin",sourceObj1);   
  else   if(sourceObj1!=null   &&   objectObj12!=null)   objectObj12.insertAdjacentElement("beforeEnd",sourceObj1);   
  sourceObj1=null;   
  objectObj1=null;   
  objectObj12=null;   
  }  