/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Abraham Joffe :: http://www.abrahamjoffe.com.au/ 
Insert the style element <BODY style="cursor: move">*/


document.onmousedown = function(){
  var e=arguments[0]||event;
  var x=document.body.scrollLeft+e.clientX;
  var y=document.body.scrollTop+e.clientY;
  document.onmousemove=function(){
    scrollTo(x-e.clientX, y-e.clientY);
    return true;
  }
  document.onmouseup=function(){
    document.onmousemove=null;
  }
  return true;
}

document.write('<STYLE><!--BODY{cursor: move;}--></STYLE>')
