<!--
// JavaScript Document

  var dragswitch1=0 

  var nsx1

  var nsy1

  var nstemp1

  function drag_dropns1(name){

  temp=eval(name)

  temp.captureEvents(Event.MOUSEDOWN | Event.MOUSEUP)

  temp.onmousedown=gons1

  temp.onmousemove=dragns1

  temp.onmouseup=stopns1 

  }

  function gons1(e){

  temp.captureEvents(Event.MOUSEMOVE)

  nsx1=e.x

  nsy1=e.y

  }

  function dragns1(e){

  if (dragswitch1==1){

  temp.moveBy(e.x-nsx1,e.y-nsy1)

  return false 

  }

  }

  function stopns(){

  temp.releaseEvents(Event.MOUSEMOVE)

  }

  var dragapproved=false

  function drag_dropie1(){

  if (dragapproved==true){

  document.all.showimage1.style.pixelLeft=tempx+event.clientX-iex

  document.all.showimage1.style.pixelTop=tempy+event.clientY-iey

  return false

  }

  }

  function initializedragie1(){

  iex=event.clientX

  iey=event.clientY

  tempx=showimage1.style.pixelLeft

  tempy=showimage1.style.pixelTop

  dragapproved=true

  document.onmousemove=drag_dropie1

  }

  if (document.all){

  document.onmouseup=new Function("dragapproved=false") 

  }

  function hidebox1(){

  if (document.all)

  showimage1.style.visibility="hidden"

  else if (document.layers)

  document.showimage1.visibility="hide"

  }

//-->
