<!--hide script from old browsers
//Magic Drag - version 0.6 - Main programme
//Copyright © 1997 - 1999 by Enigma ® Designs and Kallback Africa. All rights reserved
//Simply -  http://www.kallbackafrica.com/simply
//mirror at http://www.kallback.co.za/simply
//Programmed by Michel van Baalen - mouse@kallback.co.za
//This script may not be used without permission
//
// DO NOT change ANY of the following code !!!
//
ox = oy = 0
BroW = parseInt(navigator.appVersion)
if (BroW >= 4) {Vs = true} else {Vs = false}
//
function Movestart(e) {
  docs = ""
  fnd = "iMAge"
  for (i = 0 ; i <= Drag.length-1 ; i++) {
    if (document.all) {
      if (event.srcElement.id == fnd + i) {
        z = event.srcElement.id ; docs = fnd + i
        document.onmousemove = Dragit ; break
      } else {docs = ""}
    } else {
      if (e.target.id == fnd + i) {
        docs = fnd + i ; break
      } else {docs = ""}
    }
  }
  if (docs != "") {
    if (document.layers) {
      document.captureEvents(Event.MOUSEUP | Event.MOUSEDOWN)
      document.onmousemove = Dragit ; document.onmouseup = Exit
      document.onmousedown = Go
    } 
  } else {Exit()}
}
function Go(e) {
  if (docs != "") {
    document.captureEvents(Event.MOUSEMOVE) ; ox = e.x ; oy = e.y
  } else {Exit()}
}
function Dragit(e) {
 if (docs != "") {
   if (document.all) {
     if (event.button == 1) {
       //ox = window.event.x ; oy = window.event.y
       ox = event.clientX + document.body.scrollLeft ; oy = event.clientY + document.body.scrollTop
       if (Width[i] != "text") {
         ox = ox - parseInt(document.all[z].width / 2) ; oy = oy - parseInt(document.all[z].height / 2)
       }
       document.all[z].style.posLeft = ox 
       document.all[z].style.posTop  = oy
     }
   } else {
    document[docs].moveBy(e.x - ox,e.y - oy)
   }
   return false
 } else {Exit()}
}
function Exit() {
  if (document.layers) {
    document.releaseEvents(Event.MOUSEMOVE | Event.MOUSEUP | Event.MOUSEDOWN)
  }
  docs = "" 
}
if (Vs == true) { 
  if (document.layers) {
    document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)
    document.onmouseout  = Exit
  }
  document.onmouseover = Movestart
}
//
//end hiding contents-->