<!--hide script from old browsers
//Magic Reader - version 2.0 - 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 !!!
//
BroW = parseInt(navigator.appVersion)
if (BroW >= 4) {Vs = true} else {Vs = false}
Width = screen.availWidth - (parseFloat(Margin) + 30)
ox = oy = start = 0 ; ws=""
function Track(e) {
  if (Vs == true) {
    if (start == 0) {
      box = '<IMG SRC="reader.gif" WIDTH="' + Width + '" HEIGHT="1">'
      start++
      if (document.all) {document.all('reader').innerHTML = box
      } else {document['reader'].document.write(box) ; document.close()}
    }
    if (document.all) {oy = event.clientY + document.body.scrollTop} else {oy = oy = e.pageY}
    oy = oy - 5
    if (document.all) {document.all['reader'].style.posTop  = oy
    } else {document['reader'].moveTo(Margin,oy)}
  } 
}
function Read() {
  if (Vs == true) {
    if (document.layers) {document.captureEvents(Event.MOUSEMOVE)}
    document.onmousemove = Track
    box = '<A HREF="javascript:ReadOff()" ONMOUSEOVER="window.status=ws;return true"><IMG SRC="roff.gif" WIDTH="61" HEIGHT="14" BORDER="0"></A>'
    if (document.all) {
      document.all('readcont').innerHTML = box
      document.all['reader'].style.visibility = 'visible'
    } else {
      document['readcont'].document.write(box) ; document.close()
      document.layers['reader'].visibility = 'visible'
    }
  }
}
function ReadOff() {
  if (Vs == true) {
    if (document.layers) {document.releaseEvents(Event.MOUSEMOVE)}
    box = '<A HREF="javascript:Read()" ONMOUSEOVER="window.status=ws;return true"><IMG SRC="ron.gif" WIDTH="61" HEIGHT="14" BORDER="0"></A>'
    if (document.all) {
      document.all('readcont').innerHTML = box
      document.all['reader'].style.visibility = 'hidden'
    } else {
      document['readcont'].document.write(box) ; document.close()
      document.layers['reader'].visibility = 'hidden'
    }
  }
}
function Finish () {
  if (Vs == true) {
    box = '<A HREF="javascript:Read()" ONMOUSEOVER="window.status=ws;return true"><IMG SRC="ron.gif" WIDTH="61" HEIGHT="14" BORDER="0"></A>'
    if (document.all) {
      document.all('readcont').innerHTML = box
      document.all['readcont'].style.left = Left
      document.all['readcont'].style.top = Top
      document.all['reader'].style.left = Margin
      document.all['reader'].style.width = Width
    } else {
      document['readcont'].document.write(box) ; document.close()
      document.layers['readcont'].left = Left
      document.layers['readcont'].top = Top
      document.layers['reader'].left = Margin
      document.layers['reader'].width = Width
    }
  }
}
//
onload = Finish
//
//end hiding contents-->