/*

	Generated by Visual Folder Tree Builder 2.0		

		http://mysoft.s5.com/ 



                Copyright (c)     Mysoft, Inc.   August 2001

*/



//**************************************************************** 

// You are free to copy the "Folder-Tree" script as long as you  

// keep this copyright notice: 

// Script found in: http://www.geocities.com/Paris/LeftBank/2178/ 

// Author: Marcelino Alves Martins (martins@hks.com) December '97. 

//**************************************************************** 



/* Definition of class Folder */ 

 

function Folder(folderDescription, hreference)  

{ 

  this.desc = folderDescription 

  this.hreference = hreference 

  this.id = -1   

  this.navObj = 0  

  this.iconImg = 0  

  this.nodeImg = 0  

  this.isLastNode = 0 

 

  /* dynamic data */ 

  this.isOpen = true 

  this.iconSrc = "ftv2folderopen.gif"   

  this.children = new Array 

  this.nChildren = 0 

 

  /* methods */ 

  this.initialize = initializeFolder 

  this.setState = setStateFolder 

  this.addChild = addChild 

  this.createIndex = createEntryIndex 

  this.hide = hideFolder 

  this.display = display 

  this.renderOb = drawFolder 

  this.totalHeight = totalHeight 

  this.subEntries = folderSubEntries 

  this.outputLink = outputFolderLink 

} 

 

function setStateFolder(isOpen) 

{ 

  var subEntries 

  var totalHeight 

  var fIt = 0 

  var i=0 

 

  if (isOpen == this.isOpen) 

    return 

 

  if (browserVersion == 2)  

  { 

    totalHeight = 0 

    for (i=0; i < this.nChildren; i++) 

      totalHeight = totalHeight + this.children[i].navObj.clip.height 

      subEntries = this.subEntries() 

    if (this.isOpen) 

      totalHeight = 0 - totalHeight 

    for (fIt = this.id + subEntries + 1; fIt < nEntries; fIt++) 

      indexOfEntries[fIt].navObj.moveBy(0, totalHeight) 

  }  

  this.isOpen = isOpen 

  propagateChangesInState(this) 

} 

 

function propagateChangesInState(folder) 

{   

  var i=0 

 

  if (folder.isOpen) 

  { 

    if (folder.nodeImg) 

      if (folder.isLastNode) 

        folder.nodeImg.src = "ftv2mlastnode.gif" 

      else 

	  folder.nodeImg.src = "ftv2mnode.gif" 

    folder.iconImg.src = "ftv2folderopen.gif" 

    for (i=0; i<folder.nChildren; i++) 

      folder.children[i].display() 

  } 

  else 

  { 

    if (folder.nodeImg) 

      if (folder.isLastNode) 

        folder.nodeImg.src = "ftv2plastnode.gif" 

      else 

	  folder.nodeImg.src = "ftv2pnode.gif" 

    folder.iconImg.src = "ftv2folderclosed.gif" 

    for (i=0; i<folder.nChildren; i++) 

      folder.children[i].hide() 

  }  

} 

 

function hideFolder() 

{ 

  if (browserVersion == 1) { 

    if (this.navObj.style.display == "none") 

      return 

    this.navObj.style.display = "none" 

  } else { 

    if (this.navObj.visibility == "hiden") 

      return 

    this.navObj.visibility = "hiden" 

  } 

   

  this.setState(0) 

} 

 

function initializeFolder(level, lastNode, leftSide) 

{ 

var j=0 

var i=0 

var numberOfFolders 

var numberOfDocs 

var nc 

      

  nc = this.nChildren 

   

  this.createIndex() 

 

  var auxEv = "" 

 

  if (browserVersion > 0) 

    auxEv = "<a href='javascript:;' onMouseDown='return clickOnNode("+this.id+")'>" 

  else 

    auxEv = "<a>" 

 

  if (level>0) 

    if (lastNode) /* the last 'brother' in the children array */ 

    { 

      this.renderOb(leftSide + auxEv + "<img name='nodeIcon" + this.id + "' src='ftv2mlastnode.gif' width=16 height=22 border=0></a>") 

      leftSide = leftSide + "<img src='ftv2blank.gif' width=16 height=22>"  

      this.isLastNode = 1 

    } 

    else 

    { 

      this.renderOb(leftSide + auxEv + "<img name='nodeIcon" + this.id + "' src='ftv2mnode.gif' width=16 height=22 border=0></a>") 

      leftSide = leftSide + "<img src='ftv2vertline.gif' width=16 height=22>" 

      this.isLastNode = 0 

    } 

  else 

    this.renderOb("") 

   

  if (nc > 0) 

  { 

    level = level + 1 

    for (i=0 ; i < this.nChildren; i++)  

    { 

      if (i == this.nChildren-1) 

        this.children[i].initialize(level, 1, leftSide) 

      else 

        this.children[i].initialize(level, 0, leftSide) 

      } 

  } 

} 

 

function drawFolder(leftSide) 

{ 

  if (browserVersion == 2) { 

    if (!doc.yPos) 

      doc.yPos=8 

    doc.write("<layer id='folder" + this.id + "' top=" + doc.yPos + " visibility=hiden>") 

  } 

   

  doc.write("<TABLE ") 

  if (browserVersion == 1) 

    doc.write(" id='folder" + this.id + "' style='position:block;' ") 

  doc.write(" BORDER=0 CELLSPACING=0 CELLPADDING=0>") 

  doc.write("<TR><TD>") 

  doc.write(leftSide) 

  this.outputLink() 

  doc.write("<img name='folderIcon" + this.id + "' ") 

  doc.write("src='" + this.iconSrc+"' border=0></a>") 

  doc.write("</TD><TD VALIGN=middle nowrap>") 

  if (USETEXTLINKS) 

  { 

    this.outputLink() 

    doc.write("<NOBR>" + this.desc + "</NOBR></a>")  

  } 

  else 

    doc.write("<NOBR>" + this.desc + "</NOBR>") 

  doc.write("</TD>")  

  doc.write("</TR></TABLE>") 

   

  if (browserVersion == 2) { 

    doc.write("</layer>") 

  } 

 

  if (browserVersion == 1) { 

    this.navObj = doc.all["folder"+this.id] 

    this.iconImg = doc.all["folderIcon"+this.id] 

    this.nodeImg = doc.all["nodeIcon"+this.id] 

  } else if (browserVersion == 2) { 

    this.navObj = doc.layers["folder"+this.id] 

    this.iconImg = this.navObj.document.images["folderIcon"+this.id] 

    this.nodeImg = this.navObj.document.images["nodeIcon"+this.id] 

    doc.yPos=doc.yPos+this.navObj.clip.height 

  } 

} 

 

function outputFolderLink() 

{ 

  if (this.hreference) 

  { 

    doc.write("<a href='" + this.hreference + "' TARGET=\"" + TFRAME + "\" ") 

    if (browserVersion > 0) 

      doc.write("onMouseDown='clickOnFolder("+this.id+")'>") 

  }else{

  	if (this.id!=0) 

	  doc.write("<a href='javascript:;' onMouseDown='clickOnFolder("+this.id+"); return false'>") /* 100600 */

  }

} 

 

function addChild(childNode) 

{ 

  this.children[this.nChildren] = childNode 

  this.nChildren++ 

  return childNode 

} 

 

function folderSubEntries() 

{ 

  var i = 0 

  var se = this.nChildren 

 

  for (i=0; i < this.nChildren; i++){ 

    if (this.children[i].children) //is a folder 

      se = se + this.children[i].subEntries() 

  } 

 

  return se 

} 

 

 

/* Definition of class Item (a document or link inside a Folder) */

 

function Item(itemDescription, itemLink)

{ 

  /* constant data */ 

  this.desc = itemDescription 

  this.link = itemLink 

  this.id = -1 //initialized in initalize() 

  this.navObj = 0 //initialized in render() 

  this.iconImg = 0 //initialized in render() 

  this.iconSrc = "ftv2doc.gif" 



  /* methods */ 

  this.initialize = initializeItem 

  this.createIndex = createEntryIndex 

  this.hide = hideItem 

  this.display = display 

  this.renderOb = drawItem 

  this.totalHeight = totalHeight 

} 

 

function hideItem() 

{ 

  if (browserVersion == 1) { 

    if (this.navObj.style.display == "none") 

      return 

    this.navObj.style.display = "none" 

  } else { 

    if (this.navObj.visibility == "hiden") 

      return 

    this.navObj.visibility = "hiden" 

  }     

} 

 

function initializeItem(level, lastNode, leftSide) 

{  

  this.createIndex() 

 

  if (level>0) 

    if (lastNode) //the last 'brother' in the children array 

    { 

      this.renderOb(leftSide + "<img src='ftv2lastnode.gif' width=16 height=22>") 

      leftSide = leftSide + "<img src='ftv2blank.gif' width=16 height=22>"  

    } 

    else 

    { 

      this.renderOb(leftSide + "<img src='ftv2node.gif' width=16 height=22>") 

      leftSide = leftSide + "<img src='ftv2vertline.gif' width=16 height=22>" 

    } 

  else 

    this.renderOb("")   

} 

 

function drawItem(leftSide) 

{ 

  if (browserVersion == 2) 

    doc.write("<layer id='item" + this.id + "' top=" + doc.yPos + " visibility=hiden>") 

     

  doc.write("<TABLE ") 

  if (browserVersion == 1) 

    doc.write(" id='item" + this.id + "' style='position:block;' ") 

  doc.write(" BORDER=0 CELLSPACING=0 CELLPADDING=0>") 

  doc.write("<TR><TD>") 

  doc.write(leftSide) 

  if (this.link) 

      doc.write("<a href=" + this.link + ">") 

  doc.write("<img id='itemIcon"+this.id+"' ") 

   doc.write("src='"+this.iconSrc+"' border=0>")



  doc.write("</a>") 

  doc.write("</TD><TD VALIGN=middle nowrap>") 

  if (USETEXTLINKS && this.link) 

    doc.write("<NOBR><a href=" + this.link + ">" + this.desc + "</NOBR></a>") 

  else 

    doc.write("<NOBR>" + this.desc + "</NOBR>") 

  doc.write("</TD></TR></TABLE>") 

   

  if (browserVersion == 2) 

    doc.write("</layer>") 

 

  if (browserVersion == 1) { 

    this.navObj = doc.all["item"+this.id] 

    this.iconImg = doc.all["itemIcon"+this.id] 

  } else if (browserVersion == 2) { 

    this.navObj = doc.layers["item"+this.id] 

    this.iconImg = this.navObj.document.images["itemIcon"+this.id] 

    doc.yPos=doc.yPos+this.navObj.clip.height 

  } 

} 

 

 

/* Methods common to both objects (pseudo-inheritance) */ 

 

function display() 

{ 

  if (browserVersion == 1) 

    this.navObj.style.display = "block" 

  else 

    this.navObj.visibility = "show" 

} 

 

function createEntryIndex() 

{ 

  this.id = nEntries 

  indexOfEntries[nEntries] = this 

  nEntries++ 

} 

 

/* total height of subEntries open */ 

function totalHeight() //used with browserVersion == 2 

{ 

  var h = this.navObj.clip.height 

  var i = 0 

   

  if (this.isOpen) //is a folder and _is_ open 

    for (i=0 ; i < this.nChildren; i++)  

      h = h + this.children[i].totalHeight() 

 

  return h 

} 

  

function clickOnFolder(folderId) 

{ 

  var clicked = indexOfEntries[folderId] 

 

  if (!clicked.isOpen) 

    clickOnNode(folderId) 

} 

 

function clickOnNode(folderId) 

{ 

  var clickedFolder = 0 

  var state = 0 

 

  clickedFolder = indexOfEntries[folderId] 

  state = clickedFolder.isOpen 

 

  if (bAUTOCLOSE && !state && clickedFolder.id!=0)

  {

     if (auto_opened_folder!=-1 && auto_opened_folder!=clickedFolder.id)

     	auto_close_folder(auto_opened_folder);

     auto_opened_folder=clickedFolder.id

  }



  clickedFolder.setState(!state)



  return false;  

} 

 

function auto_close_folder(folderId)

{

 var myFolder=0;

 var state = 0 ;

 myFolder = indexOfEntries[folderId];

 state = myFolder.isOpen ;



 if (state) 

  clickOnNode(folderId);

}

 

 

/* Auxiliary Functions for Folder-Tree backward compatibility */ 

 

function gFld(description, ref) 

{ 

  if (DWIN && ref) ref = "javascript:go(\""+ref+"\")"

  

  folder = new Folder(description, ref) 

  return folder 

} 

 

function gLnk(target, description, ref) 

{ 

  fullLink = "" 



  if (DWIN && ref) ref = "javascript:go(\""+ref+"\")"



  if (ref) 

   if (target==0) 

     fullLink = "'"+ref+"' target=\"" + TFRAME + "\"" 

   else 

     fullLink = "'"+ref+"' target=_blank" 

   

  linkItem = new Item(description, fullLink)   

  return linkItem 

} 

 

function insFld(parentFolder, childFolder) 

{ 

  return parentFolder.addChild(childFolder) 

} 

 

function insDoc(parentFolder, document) 

{ 

  parentFolder.addChild(document) 

} 

 



function initializeDocument() 

{ 

  if (doc.all) 

    browserVersion = 1 /* IE */

  else 

    if (doc.layers) 

    {

	browserVersion = 2 /* NS */ 

	self.onresize = self.doResize	

    } 

    else 

      browserVersion = 0 /* other */



  foldersTree.initialize(0, 1, "") 

  foldersTree.display()

  

  if (browserVersion > 0) 

  { 

    doc.write("<layer top="+indexOfEntries[nEntries-1].navObj.top+">&nbsp;</layer>") 

 

    /* close the whole tree */ 

    clickOnNode(0) 

    /* open the root folder */ 

    clickOnNode(0)



  } 

} 



function go(s)

{

	onerror=goNewW; /* IE */

	sErrREF = s; /* IE */

	

	if (!opener.closed)

		opener.document.location=s;

	else

		window.open(s,"newW"); /* NS */

}



function goNewW() /* IE */ 

{

	window.open(sErrREF,"newW");

}



function doResize() /* NS */

{

	document.location.reload();

}



function hideLayer(layerName){

  eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.visibility="hidden"');

}



indexOfEntries = new Array 

nEntries = 0 

doc = document 

browserVersion = 0 

selectedFolder=0 

sErrREF = ""; /* IE */

layerRef="document.all";

styleSwitch=".style";

  if (navigator.appName == "Netscape") {

    layerRef="document.layers";

	styleSwitch="";

  }

USETEXTLINKS = 1 

TFRAME="main_frame" 

DWIN=0 

auto_opened_folder=-1;

bAUTOCLOSE=1;



foldersTree = gFld("Hengsten catalogus", "Blank.html")

a1 = insFld(foldersTree, gFld("Documentatie", ""))

insDoc(a1, gLnk(0, "Uitleg afkortingen", "uitleg.htm"))

insDoc(a1, gLnk(0, "NAS-10 Hengsten", "nas-10.htm"))



a60 = insFld(foldersTree, gFld("Aangeboden", ""))

insDoc(a60, gLnk(0, "Bayern's Artos", "tbayernsartos.htm"))






a4 = insFld(foldersTree, gFld("Mini Hengsten", ""))

insDoc(a4, gLnk(0, "Alfred van Warnsborn", "alfredvanwarnsborn.htm"))

insDoc(a4, gLnk(0, "Amigo v stal Anja", "amigo.htm"))

insDoc(a4, gLnk(0, "Bartje van de Koningstraat", "bartjevdkoningstraat.htm"))

insDoc(a4, gLnk(0, "Basje v Hurwenen", "basjevanhurwenen.htm"))

insDoc(a4, gLnk(0, "Bayerns Artos", "bayernsartos.htm"))

insDoc(a4, gLnk(0, "Bayerns Falco", "bayernsfalco.htm"))

insDoc(a4, gLnk(0, "Bayerns Raki", "bayernsraki.htm"))

insDoc(a4, gLnk(0, "Black Beauty", "blackbeauty.htm"))

insDoc(a4, gLnk(0, "Bolero vd Blatenplak", "bolerovdblatenplak.htm"))

insDoc(a4, gLnk(0, "Cranleigh Moccasin", "cran-moccasin.htm"))

insDoc(a4, gLnk(0, "Delco vd MarvenH.", "delcovdmarvenhof.htm"))

insDoc(a4, gLnk(0, "Driek van Hurwenen", "driekvanhurwenen.htm"))

insDoc(a4, gLnk(0, "Fips", "fips.htm"))

insDoc(a4, gLnk(0, "Flower van Panorama", "flowervanpanorama.htm"))

insDoc(a4, gLnk(0, "Fredericus", "fredericus.htm"))

insDoc(a4, gLnk(0, "Fresco v Masnon", "frescovmasnon.htm"))

insDoc(a4, gLnk(0, "Guppy", "guppy.htm"))

insDoc(a4, gLnk(0, "Jazz v stal Anja", "jazzvsanja.htm"))

insDoc(a4, gLnk(0, "Jordy vd Kar", "jordyvdkar.htm"))

insDoc(a4, gLnk(0, "Joris van de Ledeacker", "jorisvdledeacker.htm"))



insDoc(a4, gLnk(0, "Keith of the Rovers Inn", "keith.htm"))





insDoc(a4, gLnk(0, "Lodewijk van Hurwenen", "lodewijkvanhurwenen.htm"))

insDoc(a4, gLnk(0, "Manno v Veldzicht", "manno v veldzicht.htm"))

insDoc(a4, gLnk(0, "Mario van Veldzicht", "mariovanveldzicht.htm"))

insDoc(a4, gLnk(0, "ML's Rian", "mlsrian.htm"))

insDoc(a4, gLnk(0, "Mythos", "mythos.htm"))

insDoc(a4, gLnk(0, "Nero v Warnsborn", "nero.htm"))

insDoc(a4, gLnk(0, "Omar", "omar.htm"))



insDoc(a4, gLnk(0, "Pieter van de Bloemenstraat", "pietervandebloemenstraat.htm"))

insDoc(a4, gLnk(0, "Rakker v.h Kuilstuk", "rakkervhkuilstuk.htm"))

insDoc(a4, gLnk(0, "Rascal vd Hoeve", "rascalvdhoeve.htm"))

insDoc(a4, gLnk(0, "Rayo", "rayo.htm"))

insDoc(a4, gLnk(0, "Rickie", "rickie.htm"))

insDoc(a4, gLnk(0, "Rocco v Warnsborn", "roccovwarnsborn.htm"))

insDoc(a4, gLnk(0, "Rocky vd Hoeve", "rockyvdhoeve.htm"))

insDoc(a4, gLnk(0, "Safari Sunset van Panorama", "safarisunsetvanpanorama.htm"))

insDoc(a4, gLnk(0, "Sander", "sander.htm"))

insDoc(a4, gLnk(0, "Sir Golden Drops", "sirgoldendrops.htm"))

insDoc(a4, gLnk(0, "Special Eff. Money Maker", "moneymaker.htm"))

insDoc(a4, gLnk(0, "Symbol van de Pony Hoeve", "symbolvandeponyhoeve.htm"))

insDoc(a4, gLnk(0, "Two Spot vd Immetjesh.", "twospot.htm"))

insDoc(a4, gLnk(0, "U-Phantasy of the Blue stable", "uphantasyotbluestable.htm"))

insDoc(a4, gLnk(0, "Vulcan", "vulcan.htm"))

insDoc(a4, gLnk(0, "Wantsley Sparks", "wantsleysparks.htm"))

insDoc(a4, gLnk(0, "Winnetou vd Mariaweide", "winnetouvandemariaweide.htm"))




a45 = insFld(foldersTree, gFld("Kleine maat Hengsten", ""))

insDoc(a45, gLnk(0, "Avanti", "avanti.htm"))

insDoc(a45, gLnk(0, "Butterfly Effect", "butterflyeffect.htm"))

insDoc(a45, gLnk(0, "Chewano", "chewano.htm"))

insDoc(a45, gLnk(0, "In de Ban van Pjotr", "indebanvpjotr.htm"))

insDoc(a45, gLnk(0, "Pepper", "pepper.htm"))

insDoc(a45, gLnk(0, "Vandango-B", "vandangob.htm"))



a49 = insFld(foldersTree, gFld("Grote maat Hengsten", ""))

insDoc(a49, gLnk(0, "Axioma's Casanova C", "axiomascasanovac.htm"))

insDoc(a49, gLnk(0, "Isala\'s Orient", "orient.htm"))

insDoc(a49, gLnk(0, "Meander van de Heimeriete", "meandervdheimeriete.htm"))

insDoc(a49, gLnk(0, "Oleander", "oleander.htm"))

insDoc(a49, gLnk(0, "Palousa-Content", "palousacontent.htm"))

insDoc(a49, gLnk(0, "Palousa-Convenance", "palousaconvenance.htm"))

insDoc(a49, gLnk(0, "Palousa-Sturdy Fellow", "palousa sturdy fellow.htm"))

insDoc(a49, gLnk(0, "Peru\'s Scen Tao", "perusscentao.htm"))



insDoc(a49, gLnk(0, "Sunfl. Joys Jewel", "joy.htm"))

insDoc(a49, gLnk(0, "Taro af Boruplund", "taroafboruplund.htm"))

insDoc(a49, gLnk(0, "Zips Jewel", "zipsjewel.htm"))



a151 = insFld(foldersTree, gFld("NAS 10", "geennas10.htm"))









a58 = insFld(foldersTree, gFld("Archief", ""))

insDoc(a58, gLnk(0, "Aladin v Shettyhof", "aladin v shettyhof.htm"))

insDoc(a58, gLnk(0, "Alex vd Kamperweg", "alexvdkamperweg.htm"))

insDoc(a58, gLnk(0, "Ametads verass.", "ametadsverassing.htm"))

insDoc(a58, gLnk(0, "Aram", "aram.htm"))

insDoc(a58, gLnk(0, "Arax", "arax.htm"))

insDoc(a58, gLnk(0, "Argint", "argint.htm"))

insDoc(a58, gLnk(0, "Arlo", "arlo.htm"))

insDoc(a58, gLnk(0, "Atilla", "atilla.htm"))

insDoc(a58, gLnk(0, "Bambie", "bambie.htm"))

insDoc(a58, gLnk(0, "Bantac Tin Soldier", "bantactinsoldier.htm"))

insDoc(a58, gLnk(0, "Bayerns McGyver", "bayernsmcgyver.htm"))

insDoc(a58, gLnk(0, "Bayerns Rugby", "bayernsrugby.htm"))

insDoc(a58, gLnk(0, "Bergm.Jalil", "jalil.htm"))

insDoc(a58, gLnk(0, "Bingo", "bingo.htm"))

insDoc(a58, gLnk(0, "Bobby", "bobby.htm"))

insDoc(a58, gLnk(0, "Bonanza", "bonanza.htm"))

insDoc(a58, gLnk(0, "Bratt", "bratt.htm"))

insDoc(a58, gLnk(0, "Brown Boy", "brownboy.htm"))

insDoc(a58, gLnk(0, "BrummersH Apache", "brummer-apache.htm"))

insDoc(a58, gLnk(0, "BrummersH Goliath", "brummer-goliath.htm"))

insDoc(a58, gLnk(0, "BrummersH Twingo", "brummer-twingo.htm"))

insDoc(a58, gLnk(0, "Cardinal of Woodr.", "cardinalofwoodrow.htm"))

insDoc(a58, gLnk(0, "Ceasar", "ceasar.htm"))

insDoc(a58, gLnk(0, "Chaparal", "chapparal.htm"))

insDoc(a58, gLnk(0, "Dalto", "dalto.htm"))

insDoc(a58, gLnk(0, "Daniel", "daniel.htm"))

insDoc(a58, gLnk(0, "Davidoff-B", "davidoff-b.htm"))

insDoc(a58, gLnk(0, "Devil Grey", "devilgrey.htm"))

insDoc(a58, gLnk(0, "Diletto", "diletto.htm"))

insDoc(a58, gLnk(0, "EastS. Hertog Jan", "eastsidehertogjan.htm"))

insDoc(a58, gLnk(0, "Elegant", "elegant.htm"))

insDoc(a58, gLnk(0, "Elroy", "elroy.htm"))

insDoc(a58, gLnk(0, "Felix", "felix.htm"))

insDoc(a58, gLnk(0, "Feisal", "feisal.htm"))

insDoc(a58, gLnk(0, "Flipper v Veldzicht", "flipper.htm"))

insDoc(a58, gLnk(0, "Freddy vd YsselH.", "freddyvdysselhof.htm"))

insDoc(a58, gLnk(0, "Fuego Manchado", "fuegomanchado.htm"))

insDoc(a58, gLnk(0, "Fury", "fury.htm"))

insDoc(a58, gLnk(0, "Gaterly Hotspot", "gaterlyhotspot.htm"))

insDoc(a58, gLnk(0, "Gaterly Tequilla", "gaterlytequilla.htm"))

insDoc(a58, gLnk(0, "Ghandi", "ghandi.htm"))

insDoc(a58, gLnk(0, "Ginger van stal Anja", "gingervsanja.htm"))

insDoc(a58, gLnk(0, "Gorby", "gorby.htm"))

insDoc(a58, gLnk(0, "Handybus v Maur.", "handybusvanmaurits.htm"))

insDoc(a58, gLnk(0, "Happy vd YsselH.", "happyvdysselhof.htm"))

insDoc(a58, gLnk(0, "Harlequino vd Gem.", "harlequinovdgemarisahof.htm"))

insDoc(a58, gLnk(0, "Hoptunes Floris", "hoptunesfloris.htm"))

insDoc(a58, gLnk(0, "Isala\'s Solaris", "isalassolaris.htm"))

insDoc(a58, gLnk(0, "Jason", "jason.htm"))

insDoc(a58, gLnk(0, "Jody", "jody.htm"))

insDoc(a58, gLnk(0, "Johan", "johan.htm"))

insDoc(a58, gLnk(0, "Jokerreed Charge", "jokerreedcharge.htm"))

insDoc(a58, gLnk(0, "Jonathon of Trelaw.", "jonathonoftrelawne.htm"))

insDoc(a58, gLnk(0, "Kanjer van de IJsselhof", "kanjervdijsselhof.htm"))

insDoc(a58, gLnk(0, "Keith vd Hees", "keithvhees.htm"))

insDoc(a58, gLnk(0, "Kenai v Stal de Cormeulen", "kenaivanstaldecormeulen.htm"))

insDoc(a58, gLnk(0, "Kentucky Boy v SA", "kentuckyboyvsanja.htm"))

insDoc(a58, gLnk(0, "Lars", "lars.htm"))

insDoc(a58, gLnk(0, "Leon", "leon.htm"))

insDoc(a58, gLnk(0, "Little Boy", "littleboy.htm"))

insDoc(a58, gLnk(0, "Luuk van de Schutlakenweg", "luukvdschutlakenweg.htm"))

insDoc(a58, gLnk(0, "Mackaelgrey", "mackaelgrey.htm"))

insDoc(a58, gLnk(0, "Majean", "majean.htm"))

insDoc(a58, gLnk(0, "Major", "major.htm"))

insDoc(a58, gLnk(0, "Marck", "marck.htm"))

insDoc(a58, gLnk(0, "Martin", "martin.htm"))

insDoc(a58, gLnk(0, "Max v/d Bernard v. Damstraat", "maxvdbernardvdamstraat.htm"))

insDoc(a58, gLnk(0, "Meglias Loshjad", "megliasloshjad.htm"))

insDoc(a58, gLnk(0, "Michael", "michael.htm"))

insDoc(a58, gLnk(0, "Napoleon vd Bernard van Damstraat", "napoleonvdbernardvdamstraat.htm"))

insDoc(a58, gLnk(0, "NFC E.Spec. Effort", "nfcegyptianspecialeffort.htm"))

insDoc(a58, gLnk(0, "Noran N", "norann.htm"))

insDoc(a58, gLnk(0, "Onco vd Kamperw.", "oncovdkamperweg.htm"))

insDoc(a58, gLnk(0, "Oregon v SA", "oregonvstalanja.htm"))

insDoc(a58, gLnk(0, "Orion v Stal Ciroshet", "orionvsciroshet.htm"))

insDoc(a58, gLnk(0, "Oskar", "oskar.htm"))

insDoc(a58, gLnk(0, "Palousa Santos", "palousasantos.htm"))

insDoc(a58, gLnk(0, "Pandor", "pandor.htm"))

insDoc(a58, gLnk(0, "Pardoes van Sundance", "pardoesvansundance.htm"))

insDoc(a58, gLnk(0, "Pax", "pax.htm"))

insDoc(a58, gLnk(0, "Pessoa v Warnsborn", "pessoa.htm"))

insDoc(a58, gLnk(0, "Phantasy Shadow o/t Blue Stable", "phantasyblue.htm"))

insDoc(a58, gLnk(0, "Picasso", "picasso.htm"))

insDoc(a58, gLnk(0, "Pinto", "pinto.htm"))

insDoc(a58, gLnk(0, "Pinzo", "pinzo.htm"))

insDoc(a58, gLnk(0, "Prins", "prins.htm"))

insDoc(a58, gLnk(0, "Rajah vd Antoniushoeve", "rajahantonius.htm"))

insDoc(a58, gLnk(0, "Reedhill's Devdan", "reedhillsdevdan.htm"))

insDoc(a58, gLnk(0, "Robby", "robby.htm"))

insDoc(a58, gLnk(0, "Rokko", "rokko.htm"))

insDoc(a58, gLnk(0, "Romeo", "romeo.htm"))

insDoc(a58, gLnk(0, "Salladin of R", "saladin.htm"))

insDoc(a58, gLnk(0, "Sandokan vd Kan.", "sandokanvdkanelmatt.htm"))

insDoc(a58, gLnk(0, "Shico vd Hoeve", "shicovdhoeve.htm"))

insDoc(a58, gLnk(0, "Simon vd Kamperw.", "simonvdkamperweg.htm"))

insDoc(a58, gLnk(0, "Sir Mustee", "sirmustee.htm"))

insDoc(a58, gLnk(0, "Sir Wounded Knee", "sirwoundedknee.htm"))

insDoc(a58, gLnk(0, "Snowboy", "snowboy.htm"))

insDoc(a58, gLnk(0, "Sonny af Hojmark", "sonnyafhojmark.htm"))

insDoc(a58, gLnk(0, "Spangled Danny", "spangleddanny.htm"))

insDoc(a58, gLnk(0, "Spangled Duke", "spangledduke.htm"))

insDoc(a58, gLnk(0, "Spangled Glyndwr", "spangledglyndwr.htm"))

insDoc(a58, gLnk(0, "Sparta vd Ledeacker", "spartavandeledeacker.htm"))

insDoc(a58, gLnk(0, "Speedy", "speedy.htm"))

insDoc(a58, gLnk(0, "Spick vd kleine kamp", "spickvdkleinekamp.htm"))

insDoc(a58, gLnk(0, "Sunfl. Saturnus", "sunflowerssaturnus.htm"))

insDoc(a58, gLnk(0, "Surprise", "surprise.htm"))

insDoc(a58, gLnk(0, "Texas Jack", "texasjack.htm"))

insDoc(a58, gLnk(0, "Tomboy vd Bossch.", "tomboyvdbosschewaarden.htm"))

insDoc(a58, gLnk(0, "Tomboy van Bussum", "tomboyvbussum.htm"))

insDoc(a58, gLnk(0, "Vaderhoeve's Darius", "vdarius.htm"))

insDoc(a58, gLnk(0, "Victor", "victor.htm"))

insDoc(a58, gLnk(0, "Viking", "viking.htm"))

insDoc(a58, gLnk(0, "Wantsley Mithril", "wantsleymithril.htm"))

insDoc(a58, gLnk(0, "Wantsley Murdred", "mordred.htm"))

insDoc(a58, gLnk(0, "Wantsley Puck", "wantsleypuck.htm"))

insDoc(a58, gLnk(0, "Wervelwind", "wervelwind.htm"))

insDoc(a58, gLnk(0, "Wiera\"s Barney", "wierasbarney.htm"))

insDoc(a58, gLnk(0, "Willow N", "willown.htm"))

insDoc(a58, gLnk(0, "Winston vd Schimmelhoeve", "winstonvandeschimmelhoeve.htm"))

insDoc(a58, gLnk(0, "W.C.Ironeyes Cody", "winnerscircleironeyescody.htm"))

insDoc(a58, gLnk(0, "Zafir v Cordula\"s Hoeve", "zafir.htm"))

insDoc(a58, gLnk(0, "Zanegrey", "zanegrey.htm"))

insDoc(a58, gLnk(0, "Zorax", "zorax.htm"))




