// // this browserCCBot/1.0 (+http://www.commoncrawl.org/bot.html) // //drag drop function for NS 4//// ///////////////////////////////// var dragswitch=0; var nsx; var nsy; var nstemp; function drag_dropns(name){ temp=eval(name); temp.captureEvents(Event.MOUSEDOWN | Event.MOUSEUP); temp.onmousedown=gons; temp.onmousemove=dragns; temp.onmouseup=stopns; } function gons(e){ temp.captureEvents(Event.MOUSEMOVE); nsx=e.x; nsy=e.y; } function dragns(e){ if (dragswitch==1){ temp.moveBy(e.x-nsx,e.y-nsy); return false; } } function stopns(){ temp.releaseEvents(Event.MOUSEMOVE); }