Line.style.display="none";
var vLine=document.createElement("v:line");
vLine.style.position="absolute";
vLine.style.zIndex=iZIndex;
iZIndex+=1;
vLine.style.left=iPositionDownX;
vLine.style.top=iPositionDownY;
vLine.to="'"+(event.x-iPositionDownX)+","+(document.body.scrollTop+event.y-iPositionDownY)+"'";
vLine.strokecolor="#000000";
vLine.strokeweight="1";
vLine.title="流向";
var vStroke=document.createElement("v:stroke");
vStroke.EndArrow="Classic";
vStroke.StartArrow="Oval";
vLine.appendChild(vStroke);
DivID.appendChild(vLine);
iPositionDownX为onmousedown时记录的鼠标值