<SCRIPT language=JavaScript><!--drag = 0move = 0function init() { window.document.onmousemove = mouseMove window.document.onmousedown = mouseDown window.document.onmouseup = mouseUp window.document.ondragstart = mouseStop}function mouseDown() { if (drag) { clickleft = window.event.x - parseInt(dragObj.style.left) clicktop = window.event.y - parseInt(dragObj.style.top) dragObj.style.zIndex += 1 move = 1 }}function mouseStop() { window.event.returnValue = false}function mouseMove() { if (move) { dragObj.style.left = window.event.x - clickleft dragObj.style.top = window.event.y - clicktop }}function mouseUp() { move = 0}//--></SCRIPT>
</head><body bgcolor="#FFFFFF" onload=init()>
<DIV id=block1 onmouseover="dragObj=block1; drag=1;" style="LEFT: 10px; WIDTH: 0px; POSITION:absolute; TOP: 125px; HEIGHT: 0px" onmouseout=drag=0 >
    <img src="image/data2000face.jpg"  style="cursor:move" width="882" height="635" ></DIV>
  
</body>
</html>