<SCRIPT LANGUAGE="VBScript">
dim oldx, oldy
function document_onMouseMove()
dim srcElement, x, y, button
button = window.event.button
x = window.event.x
y = window.event.y
if (button = 1) then
set srcElement = window.event.srcElement
if srcElement.tagname="IMG" then
if oldx = 0 then oldx = x
if oldy = 0 then oldy = y
srcElement.style.posLeft = srcElement.style.posLeft + (x - oldx)
srcElement.style.posTop = srcElement.style.posTop + (y - oldy)
oldx = x
oldy = y
end if
end if
end function
function document_onDragStart()
window.event.returnValue = false
end function
</SCRIPT>
<img src="bfly1.gif" border="0" id="bbb"
style="position:absolute; TOP:200;LEFT:300; WIDTH:64px;HEIGHT:64px;ZINDEX:-1;">