<!--hide script from old browsers
//Pick 'n Show - 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 - michel@kallback.co.za
//This script may not be used without permission
//
BroW = parseInt(navigator.appVersion)
if (BroW >= 4) {Vs = true} else {Vs = false}
x1 = "" 
//
function Display(i) {
  if (Vs == true) {
    if (i != "none") {
      pickImage = new Image() ; pickImage.src = Pic[i] ; TesT()
      lin = '<P ALIGN="CENTER"><IMG SRC="' + Pic[i] + '"></P>'
      lin += '<IMG SRC="so.gif" WIDTH="' + Width + '" HEIGHT="1">'
      if ((Comment[i] != "") && (i < Comment.length)) {
        lin += '<BR><FONT SIZE="-1" FACE="arial,geneva"><CENTER>'
        lin += Comment[i] + '</CENTER></FONT>'
      }
    } else {lin = ""}
    if (document.all){document.all('show').innerHTML = lin
    } else {
      document['show'].document.write(lin)
      document['show'].document.close()
    }
  }
}
function TesT() {
  if (pickImage.complete) {
    clearTimeout(x1) ; return
  }
  x1 = setTimeout('TesT()', 100)
}
//
//end hiding contents-->