icount=0;


chk = 'if (top.root == null) {top.location = "./"} else {'
function element(objName, name, location, info, contactp, emailperson)
{
  this.objName = objName
  this.open = false
  this.name = name
  this.location = location
  this.add_to_binder = info
  this.contact = contactp
  this.email = emailperson
  this.kid = null
  this.nextPeer = null
  this.addKid = addKid
  this.addPeer = addPeer
  this.draw = draw
}




function addPeer(item)
{
  if (this.nextPeer != null)
  {
    this.nextPeer.addPeer(item)
  }
  else
  {
    this.nextPeer = item
  }
}





function addKid(item)
{
  if (this.kid != null)
  {
    this.kid.addPeer(item)
  }
  else
  {
    this.kid = item
  }
}


function open(item) {
    if (root ==null) {
      outline
     
    }
    item.open = true
}


function close (item) {
    if (root ==null) {
      
      outline
    }
    item.open = false
}


function draw()
{
if (this.kid == null) {
    // print("<dt>")
    if (this.location != null) {
       if (this.add_to_binder != "99") {
          print(" ")
     }


    else
     {
    //print("-&nbsp;")
   }
       icount=icount+1;
       if (icount == 4) {icount=1;};     
       print("<table border=1 cellpadding=5 cellspacing=0><tr><td width=150 align=left valign=top><font size=1 color=ff0000>Image Title</b></font><br><font size=2><A HREF=javascript:dispimage" + icount + "('" + this.location + "') TARGET='body'>" + this.name + "</A></font></td><td width=250 align=left valign=top><font size=1 color=ff0000>Description</b></font><br><font size=2>" + this.add_to_binder + "</td><td  width=100 align=left valign=top><font size=1 color=ff0000><b>Author</b></font><br><font size=2><a href='mailto:" + this.email + "'>" + this.contact +"</a></td></tr></table>")

	 }
      else {
        print(this.name)
        }
    if (this.nextPeer != null) {
      this.nextPeer.draw()
      }    
      else {
       // print("</dl>")
        return
        }

    }
    else {
      if (this.open) {
     //   print("\n<DT><A HREF='javascript:" + chk + ";top.close(top." + this.objName+ ");top.redraw()}'>")
     print("\n<A HREF='javascript:" + chk + ";top.close(top." + this.objName+ ");top.redraw()}'>")
        print("<br><IMG SRC='../assets/images/minus.gif'  BORDER = 0></A>&nbsp;")
     //   if (this.location != null) {
     //     print("<br><a name='" + this.name + "'></a><A HREF='' TARGET='body'>" + this.name + "</A>&nbsp;<DL>")
     //     }
     //     else {
            print('<b><font size=2 color=ff0000>' + this.name +'</font></b>'+"")
     //       }
        this.kid.draw()
        if (this.nextPeer != null) {
          this.nextPeer.draw()
        }    
    //    else {
         // print("</DL>")
    //      }
      }
      else {
        print("\n<br><A HREF='javascript:" + chk + ";top.open(top."+ this.objName + ");top.redraw()}'>")
        print("<IMG  SRC='../assets/images/plus.gif' BORDER = 0></A>&nbsp")
      //  if (this.location != null) {

      //    print("<A HREF =" + this.location +" TARGET='body'>" + this.name + "</A> " + this.add_to_binder)

       //   }
        //  else {
         

          print('<b><font size=2>' + this.name + '</font></b>')
      //      }
        if (this.nextPeer != null) {
          this.nextPeer.draw()
        }    
     //   else {
       //   print("</DL>")
       //   }

      }

    }
print("<p>")
}
    





function print(text)
{
if (navigator.appVersion.lastIndexOf('Win') == -1 && navigator.appVersion.lastIndexOf('2.0') == -1) {
  top.body.document.write(text)

  }
  else {
    top.body.print(text)
  }
}
function redraw()
{
// if (navigator.appVersion.lastIndexOf('Win') == -1 && navigator.appVersion.lastIndexOf('2.0') == -1) {
//  top.body.document.open()
//  top.body.document.clear()


// dr()  
 
 // top.body.document.close()
 // }
 // else {top.body.location1 = "winhack.html"
     top.body.location = "divwin.html"
     
 //   }
}


function outline()
{
root = new element("root","10 Recommended Images to look at", null, " ")
 root.addKid(new element(null, "Golfer",  "../images/sport/golf/golf03.jpg",  "Action Shot of Golfer T-ing off" , " " ,"cookian@easynet.co.uk" ))
 root.addKid(new element(null, "Wasp",  "../images/animal/wasp02.jpg",  "A Closeup of a wasp on a flower" , " " ,"cookian@easynet.co.uk" ))
 root.addKid(new element(null, "Arundel Castle",  "../images/buildings/acastle02.jpg",  "Full view of Arundel Castle" , " " ,"cookian@easynet.co.uk" ))
 root.addKid(new element(null, "Round bails of straw",  "../images/farm/strawbail05.jpg",  "Bails of straw in a farm field" , " " ,"cookian@easynet.co.uk" ))
 root.addKid(new element(null, "Railway Crossing",  "../images/misc/crossing03.jpg",  "Railway crossing with train passing" , " " ,"cookian@easynet.co.uk" ))
 root.addKid(new element(null, "Sign Post",  "../images/misc/signpost.jpg",  "A signpot with serveral directions" , " " ,"cookian@easynet.co.uk" ))
 root.addKid(new element(null, "Cricket Game",  "../images/sport/cricket/cricket41.jpg",  "Cricketer after just hitting the ball" , " " ,"cookian@easynet.co.uk" ))
 root.addKid(new element(null, "Pocket Watch",  "../images/web/watch.jpg",  "Closeup of a pocket watch" , " " ,"cookian@easynet.co.uk" ))
 root.addKid(new element(null, "Jumbo Jet Landing",  "../images/airport/d16/MVC-022F.JPG",  "A Jumbo Jet just landing at Gatwick" , " " ,"cookian@easynet.co.uk" ))
 root.addKid(new element(null, "Sun through clouds",  "../images/cloud/cloud02.jpg",  "Cloudy sky with Sun breaking through showing rays" , " " ,"cookian@easynet.co.uk" ))

root.addPeer(comp = new element("comp", "Computer Graphics", null, "Ian Cook","cookian@easynet.co.uk" ))
 comp.addKid(new element(null, "Interface1",  "../images/comp/interface1.gif",  "<a href='http://www.net-matrix.com/'>Visit Andrews site</a>" , "Andrew Sain" ,"lsain@vnet.net" ))
 comp.addKid(new element(null, "Interface1",  "../images/comp/interface2.gif",  "<a href='http://www.net-matrix.com/'>Visit Andrews site</a>" , "Andrew Sain" ,"lsain@vnet.net" ))


root.addPeer(build = new element("build", "Buildings", null, "Ian Cook","cookian@easynet.co.uk" ))
 build.addKid(new element(null, "Arundel Castle",  "../images/buildings/acastle01.jpg",  "Various views of Arundel Castle" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 build.addKid(new element(null, "Arundel Castle",  "../images/buildings/acastle02.jpg",  "Various views of Arundel Castle" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 build.addKid(new element(null, "Arundel Castle",  "../images/buildings/acastle03.jpg",  "Various views of Arundel Castle" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 build.addKid(new element(null, "Arundel Castle",  "../images/buildings/acastle04.jpg",  "Various views of Arundel Castle" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 build.addKid(new element(null, "Arundel Castle",  "../images/buildings/acastle05.jpg",  "Various views of Arundel Castle" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 build.addKid(new element(null, "Arundel Castle",  "../images/buildings/acastle06.jpg",  "Various views of Arundel Castle" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 build.addKid(new element(null, "Arundel Castle",  "../images/buildings/acastle20.jpg",  "Various views of Arundel Castle" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 build.addKid(new element(null, "Arundel Castle",  "../images/buildings/acastle21.jpg",  "Various views of Arundel Castle" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 build.addKid(new element(null, "Arundel Castle",  "../images/buildings/acastle22.jpg",  "Various views of Arundel Castle" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 build.addKid(new element(null, "Arundel Castle",  "../images/buildings/acastle23.jpg",  "Various views of Arundel Castle" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 build.addKid(new element(null, "Arundel Castle",  "../images/buildings/acastle24.jpg",  "Various views of Arundel Castle" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 build.addKid(new element(null, "Arundel Castle",  "../images/buildings/acastle25.jpg",  "Various views of Arundel Castle" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 build.addKid(new element(null, "Arundel Castle",  "../images/buildings/acastle26.jpg",  "Various views of Arundel Castle" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 build.addKid(new element(null, "Goodwood House",  "../images/buildings/goodwood01.jpg",  "Various views of Goodwood House" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 build.addKid(new element(null, "Goodwood House",  "../images/buildings/goodwood02.jpg",  "Various views of Goodwood House" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 build.addKid(new element(null, "Goodwood House",  "../images/buildings/goodwood03.jpg",  "Various views of Goodwood House" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 build.addKid(new element(null, "Goodwood House",  "../images/buildings/goodwood04.jpg",  "Various views of Goodwood House" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 build.addKid(new element(null, "Goodwood House",  "../images/buildings/goodwood05.jpg",  "Various views of Goodwood House" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 build.addKid(new element(null, "Cool House",  "../images/buildings/oldhouse.jpg",  "Circular house probably used as a Ice House" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 build.addKid(new element(null, "Racecourse",  "../images/buildings/racecourse01.jpg",  "Goodwood race course" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 build.addKid(new element(null, "Racecourse",  "../images/buildings/racecourse02.jpg",  "Goodwood race course" , "Ian Cook" ,"cookian@easynet.co.uk" ))

root.addPeer(ani = new element("ani", "Animals and Insects", null, "Ian Cook","cookian@easynet.co.uk" ))
 ani.addKid(new element(null, "Butterfly",  "../images/animal/butterfly01.jpg",  "Red Admiral on a tree" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 ani.addKid(new element(null, "Butterfly",  "../images/animal/butterfly02.jpg",  "Red Admiral on a tree" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 ani.addKid(new element(null, "Sheep",  "../images/animal/sheep01.jpg",  "A Sheep in a field" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 ani.addKid(new element(null, "Sheep",  "../images/animal/sheep02.jpg",  "Another Sheep in a field" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 ani.addKid(new element(null, "Wasp",  "../images/animal/wasp01.jpg",  "Closeup of a Wasp on a plant" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 ani.addKid(new element(null, "Wasp",  "../images/animal/wasp02.jpg",  "Closeup of a Wasp on a plant" , "Ian Cook" ,"cookian@easynet.co.uk" ))

root.addPeer(car = new element("car", "Cars and Car parts", null, "Ian Cook","cookian@easynet.co.uk" ))
 car.addKid(new element(null, "Airflow icon 1",  "../images/car/aircon01.jpg",  "No Description" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 car.addKid(new element(null, "Airflow icon 2",  "../images/car/aircon02.jpg",  "No Description" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 car.addKid(new element(null, "Car clock blurred",  "../images/blurclock.jpg",  "No Description" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 car.addKid(new element(null, "Light Switch",  "../images/car/carlight.jpg",  "No Description" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 car.addKid(new element(null, "Car Stereo",  "../images/car/carstereo.jpg",  "No Description" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 car.addKid(new element(null, "Dash Board",  "../images/car/dash01.jpg",  "No Description" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 car.addKid(new element(null, "LCD on car stereo",  "../images/car/lcd.jpg",  "No Description" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 car.addKid(new element(null, "Car tweater speaker",  "../images/car/speaker.jpg",  "No Description" , "Ian Cook" ,"cookian@easynet.co.uk" ))

root.addPeer(eff = new element("eff", "Effects", null, "Ian Cook","cookian@easynet.co.uk" ))
 eff.addKid(new element(null, "Colour",  "../images/effects/color.jpg",  "Taken during a car wash" , "Ian Cook" ,"cookian@easynet.co.uk" ))

root.addPeer(sign = new element("sign", "Signs", null, "Ian Cook","cookian@easynet.co.uk" ))
 sign.addKid(new element(null, "Sign",  "../images/sign/sign10.jpg",  "No Description" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 sign.addKid(new element(null, "Sign",  "../images/sign/sign11.jpg",  "No Description" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 sign.addKid(new element(null, "Sign",  "../images/sign/sign12.jpg",  "No Description" , "Ian Cook" ,"cookian@easynet.co.uk" ))


root.addPeer(farm = new element("farm", "Farm and Agricultual", null, "Ian Cook","cookian@easynet.co.uk" ))
 farm.addKid(new element(null, "Fence",  "../images/farm/color.jpg",  "No Description" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 farm.addKid(new element(null, "Farm Field",  "../images/farm/field01.jpg",  "No Description" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 farm.addKid(new element(null, "Bails of Straw",  "../images/farm/strawbail02.jpg",  "No Description" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 farm.addKid(new element(null, "Bails of Straw",  "../images/farm/strawbail03.jpg",  "No Description" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 farm.addKid(new element(null, "Bails of Straw",  "../images/farm/strawbail04.jpg",  "No Description" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 farm.addKid(new element(null, "Bails of Straw",  "../images/farm/strawbail05.jpg",  "No Description" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 farm.addKid(new element(null, "Bails of Straw",  "../images/farm/strawbail06.jpg",  "No Description" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 farm.addKid(new element(null, "Bails of Straw",  "../images/farm/strawbail07.jpg",  "No Description" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 farm.addKid(new element(null, "Bails of Straw",  "../images/farm/strawbail08.jpg",  "No Description" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 farm.addKid(new element(null, "Bails of Straw",  "../images/farm/strawbail09.jpg",  "No Description" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 farm.addKid(new element(null, "Bails of Straw",  "../images/farm/strawbail10.jpg",  "No Description" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 farm.addKid(new element(null, "Field of straw",  "../images/farm/strawfield02.jpg",  "No Description" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 farm.addKid(new element(null, "Farm track",  "../images/farm/track.jpg",  "No Description" , "Ian Cook" ,"cookian@easynet.co.uk" ))

root.addPeer(flora = new element("flora", "Tress and Plants", null, "Ian Cook","cookian@easynet.co.uk" ))
 flora.addKid(new element(null, "Tree",  "../images/flora/tree02.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 flora.addKid(new element(null, "Trees",  "../images/flora/trees.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 flora.addKid(new element(null, "Thistle",  "../images/flora/thistle.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 flora.addKid(new element(null, "Straw",  "../images/flora/straw02.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 flora.addKid(new element(null, "Straw",  "../images/flora/straw03.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))

root.addPeer(un = new element("un", "Unusual items", null, "Ian Cook","cookian@easynet.co.uk" ))
 un.addKid(new element(null, "Iron Steps1",  "../images/unusal/steps01.jpg",  "Iron step sculpture" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 un.addKid(new element(null, "Iron Steps2",  "../images/unusal/steps02.jpg",  "Iron step sculpture" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 un.addKid(new element(null, "Two Triangles",  "../images/unusal/triangle01.jpg",  "Triangle sculptures" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 un.addKid(new element(null, "Triangle",  "../images/unusal/triangle02.jpg",  "triangle sculpture" , "Ian Cook" ,"cookian@easynet.co.uk" ))


root.addPeer(misc = new element("misc", "Micellaneous Pictures", null, "Ian Cook","cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Broadcast Arial",  "../images/misc/arial.jpg",  "Large transmitter on hill" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Avenue",  "../images/misc/avenue.jpg",  "Avenue of trees" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Barrels",  "../images/misc/barrels.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Boat on river",  "../images/misc/boatriver.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Boy and Girl",  "../images/misc/bougirl03.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Boy and Girl",  "../images/misc/boygirl.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Boy and Girl",  "../images/misc/boygirl02.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Car passing",  "../images/misc/car01.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Car passing",  "../images/misc/car20.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Carpark",  "../images/misc/carpark01.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Carpark",  "../images/misc/carpark02.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Cars",  "../images/misc/cars30.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "People",  "../images/misc/couple01.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Cricket",  "../images/misc/cricket20.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Crossing",  "../images/misc/crossing01.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Crossing",  "../images/misc/crossing02.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Crossing",  "../images/misc/crossing03.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Cycles",  "../images/misc/cycle01.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Cycles",  "../images/misc/cycle02.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Cycles",  "../images/misc/cycle03.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Cycles",  "../images/misc/cycle04.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Family",  "../images/misc/family01.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Family",  "../images/misc/family02.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Family",  "../images/misc/family30.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Fields",  "../images/misc/fields01.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Fields",  "../images/misc/fields02.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Giveway Sign",  "../images/misc/giveway.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Tarmac",  "../images/misc/ground.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Motor Cycle",  "../images/misc/motorcycle01.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Playground Sign",  "../images/misc/playground.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Park",  "../images/misc/park.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Payhere Sign",  "../images/misc/payhere.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "People",  "../images/misc/peope105.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "People",  "../images/misc/people01.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "People",  "../images/misc/people02.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "People",  "../images/misc/people03.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "People",  "../images/misc/people04.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "People and Car",  "../images/misc/peoplecar.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Picnic",  "../images/misc/picnic.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Road Cross",  "../images/misc/roadcross.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Wall next to road",  "../images/misc/roadwall.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Signpost",  "../images/misc/signpost.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 misc.addKid(new element(null, "Man Worker",  "../images/misc/worker.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 
root.addPeer(scene = new element("scene", "Distant views", null, "Ian Cook","cookian@easynet.co.uk" ))
 scene.addKid(new element(null, "Scene01",  "../images/scene/scene20.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 scene.addKid(new element(null, "Scene02",  "../images/scene/scene21.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 scene.addKid(new element(null, "Scene03",  "../images/scene/scene22.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 scene.addKid(new element(null, "Scene04",  "../images/scene/scene23.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 scene.addKid(new element(null, "Scene05",  "../images/scene/scene24.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 scene.addKid(new element(null, "Scene06",  "../images/scene/scene25.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 scene.addKid(new element(null, "Scene07",  "../images/scene/scene26.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))

root.addPeer(sport = new element("sport", "Sport - Bowls Cricket Golf and more", null, "Ian Cook","cookian@easynet.co.uk" ))
 sport.addKid(new element(null, "Playing Bowls",  "../images/sport/bowls/bowls02.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 sport.addKid(new element(null, "Playing Bowls",  "../images/sport/bowls/bowls03.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 sport.addKid(new element(null, "Playing Bowls",  "../images/sport/bowls/bowls04.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 sport.addKid(new element(null, "Playing Bowls",  "../images/sport/bowls/bowls05.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 sport.addKid(new element(null, "Playing Bowls",  "../images/sport/bowls/bowls06.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 sport.addKid(new element(null, "Playing Bowls",  "../images/sport/bowls/bowls07.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 sport.addKid(new element(null, "Playing Cricket",  "../images/sport/cricket/cricket40.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 sport.addKid(new element(null, "Playing Cricket",  "../images/sport/cricket/cricket40.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 sport.addKid(new element(null, "Playing Cricket",  "../images/sport/cricket/cricket41.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 sport.addKid(new element(null, "Playing Cricket",  "../images/sport/cricket/cricket42.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 sport.addKid(new element(null, "Playing Cricket",  "../images/sport/cricket/cricket43.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 sport.addKid(new element(null, "Playing Cricket",  "../images/sport/cricket/cricket44.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 sport.addKid(new element(null, "Playing Cricket",  "../images/sport/cricket/cricket45.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 sport.addKid(new element(null, "Playing Cricket",  "../images/sport/cricket/cricket46.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 sport.addKid(new element(null, "Playing Cricket",  "../images/sport/cricket/bowls47.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 sport.addKid(new element(null, "Playing Golf",  "../images/sport/golf/golf01.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 sport.addKid(new element(null, "Playing Golf",  "../images/sport/golf/golf02.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 sport.addKid(new element(null, "Playing Golf",  "../images/sport/golf/golf03.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 sport.addKid(new element(null, "Playing Golf",  "../images/sport/golf/golf04.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 sport.addKid(new element(null, "Playing Golf",  "../images/sport/golf/golf05.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))

root.addPeer(web = new element("web", "Web Images", null, "Ian Cook","cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Apple",  "../images/web/apple.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Audiotape",  "../images/web/audiotape.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Banana",  "../images/web/banana.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Chess Pieces02",  "../images/web/chess02.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Chess Pieces03",  "../images/web/chess03.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Chess Pieces04",  "../images/web/chess04.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Clock02",  "../images/web/clock02.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Coins04",  "../images/web/coins04.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Cup",  "../images/web/cup.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Domino01",  "../images/web/domino01.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Domino02",  "../images/web/domino02.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Domino03",  "../images/web/domino03.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Domino04",  "../images/web/domino04.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Envelope",  "../images/web/envelope.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Floppy01",  "../images/web/floppy01.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Flower",  "../images/web/flower.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Hand-map",  "../images/web/hand01.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Hand-ruler",  "../images/web/hand02.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Hand-coins",  "../images/web/hand03.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Hand-notes",  "../images/web/hand04.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Hand-floppy",  "../images/web/hand05.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Hand-notes",  "../images/web/hand06.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Hand-notes open",  "../images/web/hand07.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Hand-notes larger",  "../images/web/hand08.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Hand-black pen",  "../images/web/hand09.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Hand-white pen",  "../images/web/hand10.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Hand-span",  "../images/web/hand11.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Hand-point",  "../images/web/handpoint.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Money Notes",  "../images/web/notes01.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Orange",  "../images/web/orange.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Padlock open",  "../images/web/padlock.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Padlock closed",  "../images/web/padlock02.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Phono Plug",  "../images/web/phonoplug.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Wall Plug",  "../images/web/plug.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Post Notes",  "../images/web/postnotes.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Rubbish",  "../images/web/rubbish.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Screwdriver01",  "../images/web/screwdriver01.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Screwdriver02",  "../images/web/screwdriver02.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Screwdriver03",  "../images/web/screwdriver03.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Skigoggle",  "../images/web/skigoggle.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Snail",  "../images/web/snail.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Thumbup",  "../images/web/thumbup.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 web.addKid(new element(null, "Pocket Watch",  "../images/web/watch.jpg",  "No Description - Click on image" , "Ian Cook" ,"cookian@easynet.co.uk" ))


root.addPeer(sky = new element("sky", "Sky with clouds", null, "Brian Roberts","brianR@graphics-world.com" ))
 sky.addKid(new element(null, "Cloud01", "../images/cloud/cloud01.jpg", "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
 sky.addKid(new element(null, "Cloud02", "../images/cloud/cloud02.jpg", "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
 sky.addKid(new element(null, "Cloud03", "../images/cloud/cloud03.jpg", "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
 sky.addKid(new element(null, "Cloud04", "../images/cloud/cloud04.jpg", "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
 sky.addKid(new element(null, "Cloud05", "../images/cloud/cloud05.jpg", "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
 sky.addKid(new element(null, "Cloud06", "../images/cloud/cloud06.jpg", "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
 sky.addKid(new element(null, "Cloud07", "../images/cloud/cloud07.jpg", "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
 sky.addKid(new element(null, "Cloud08", "../images/cloud/cloud08.jpg", "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
 sky.addKid(new element(null, "Cloud09", "../images/cloud/cloud09.jpg", "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
 sky.addKid(new element(null, "Cloud10", "../images/cloud/cloud10.jpg", "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
 sky.addKid(new element(null, "Cloud11", "../images/cloud/cloud11.jpg", "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))

 root.addPeer(fire = new element("fire", "Fireworks",  null,  "Brian Roberts","brianR@graphics-world.com" ))
  fire.addKid(new element(null, "Star Burst with bright white flares",  "../images/fireworks/f1/MVC-004F.JPG",  "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
  fire.addKid(new element(null, "Various explosions red white green",  "../images/fireworks/f1/MVC-005F.JPG",  "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
  fire.addKid(new element(null, "Orange flare shower",  "../images/fireworks/f1/MVC-006F.JPG",  "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
  fire.addKid(new element(null, "Simple Burst",  "../images/fireworks/f1/MVC-007F.JPG",  "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
  fire.addKid(new element(null, "Simple Burst",  "../images/fireworks/f1/MVC-008F.JPG",  "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
  fire.addKid(new element(null, "Simple Burst",  "../images/fireworks/f1/MVC-009F.JPG",  "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
  fire.addKid(new element(null, "Burst Blurred Image",  "../images/fireworks/f1/MVC-010F.JPG",  "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
  fire.addKid(new element(null, "Simple Burst",  "../images/fireworks/f1/MVC-011F.JPG",  "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
  fire.addKid(new element(null, "Simple Burst",  "../images/fireworks/f1/MVC-012F.JPG",  "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
  fire.addKid(new element(null, "Full blast",  "../images/fireworks/f1/MVC-013F.JPG",  "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
  fire.addKid(new element(null, "Two round circles",  "../images/fireworks/f1/MVC-015F.JPG",  "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
  fire.addKid(new element(null, "Simple Burst",  "../images/fireworks/f1/MVC-016F.JPG",  "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
  fire.addKid(new element(null, "Bright white angel shower",  "../images/fireworks/f1/MVC-018F.JPG",  "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
  fire.addKid(new element(null, "Simple Burst",  "../images/fireworks/f1/MVC-020F.JPG",  "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
  fire.addKid(new element(null, "Simple Burst",  "../images/fireworks/f1/MVC-022F.JPG",  "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
  fire.addKid(new element(null, "Simple Burst",  "../images/fireworks/f1/MVC-023F.JPG",  "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
  fire.addKid(new element(null, "Multi burst clear image",  "../images/fireworks/f1/MVC-024F.JPG",  "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
  fire.addKid(new element(null, "Flares with green glow",  "../images/fireworks/f2/MVC-001F.JPG",  "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
  fire.addKid(new element(null, "Bright twinkle shower with smoke",  "../images/fireworks/f2/MVC-002F.JPG",  "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
  fire.addKid(new element(null, "Simple burst",  "../images/fireworks/f2/MVC-003F.JPG",  "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
  fire.addKid(new element(null, "Multiple burst with lots of colour",  "../images/fireworks/f2/MVC-004F.JPG",  "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
  fire.addKid(new element(null, "Simple burst",  "../images/fireworks/f2/MVC-005F.JPG",  "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
  fire.addKid(new element(null, "Simple burst",  "../images/fireworks/f2/MVC-006F.JPG",  "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))
  fire.addKid(new element(null, "Good colourful burst - Clear image",  "../images/fireworks/f2/MVC-007F.JPG",  "No Description - Click on image" , "Brian Roberts" ,"brianR@graphics-world.com" ))

root.addPeer(boat = new element("boat", "Boats & Boat Marina (Part-1)", null, "Mark Dean","mark001@graphics-world.com" ))
 boat.addKid(new element(null, "Boats", "../images/boats/boat1/MVC-001F.JPG", "Boats tied up on jetty" , "Mark Dean" ,"mark001@graphics-world.com" ))
 boat.addKid(new element(null, "Cruiser", "./images/boats/boat1/MVC-002F.JPG", "Docked boat" , "Mark Dean" ,"mark001@graphics-world.com" ))
 boat.addKid(new element(null, "Sail Boats", "./images/boats/boat1/MVC-003F.JPG", "Boats with tall masks" , "Mark Dean" ,"mark001@graphics-world.com" ))
 boat.addKid(new element(null, "People in motor boat", "./images/boats/boat1/MVC-004F.JPG", "3 people in a small motor boat" , "Mark Dean" ,"mark001@graphics-world.com" ))
 boat.addKid(new element(null, "Large Boat", "./images/boats/boat1/MVC-005F.JPG", "No Description - Click on image" , "Docked in Marina", "Mark Dean" ,"mark001@graphics-world.com" ))
 boat.addKid(new element(null, "Dingy", "./images/boats/boat1/MVC-006F.JPG", "Family in a small boat" , "Mark Dean" ,"mark001@graphics-world.com" ))
 boat.addKid(new element(null, "Expensive Cruiser", "./images/boats/boat1/MVC-007F.JPG", "Smart boat by jetty" , "Mark Dean" ,"mark001@graphics-world.com" ))
 boat.addKid(new element(null, "Boats", "./images/boats/boat1/MVC-008F.JPG", "Serveral boats in marina" , "Mark Dean" ,"mark001@graphics-world.com" ))
 boat.addKid(new element(null, "Lots of masks", "./images/boats/boat1/MVC-009F.JPG", "Boats galore across the marina" , "Mark Dean" ,"mark001@graphics-world.com" ))
 boat.addKid(new element(null, "more boats", "./images/boats/boat1/MVC-010F.JPG", "Shot across marina" , "Mark Dean" ,"mark001@graphics-world.com" ))
 boat.addKid(new element(null, "Small sail boat", "./images/boats/boat1/MVC-011F.JPG", "Sails down passing using engine" , "Mark Dean" ,"mark001@graphics-world.com" ))
 boat.addKid(new element(null, "People", "./images/boats/boat1/MVC-012F.JPG", "A group of people walking in the marina" , "Mark Dean" ,"mark001@graphics-world.com" ))
 boat.addKid(new element(null, "Boat on trailer", "./images/boats/boat1/MVC-013F.JPG", "Power boat on shore" , "Mark Dean" ,"mark001@graphics-world.com" ))
 boat.addKid(new element(null, "Jetty", "./images/boats/boat1/MVC-014F.JPG", "View of a jetty and boats" , "Mark Dean" ,"mark001@graphics-world.com" ))
 boat.addKid(new element(null, "Front of boat", "./images/boats/boat1/MVC-016F.JPG", "Large boat on shore" , "Mark Dean" ,"mark001@graphics-world.com" ))
 boat.addKid(new element(null, "Luxery Cruiser", "./images/boats/boat1/MVC-017F.JPG", "Side view of crusier" , "Mark Dean" ,"mark001@graphics-world.com" ))
 boat.addKid(new element(null, "Motor boats", "./images/boats/boat1/MVC-018F.JPG", "Boats by jetty" , "Mark Dean" ,"mark001@graphics-world.com" ))
 boat.addKid(new element(null, "People", "./images/boats/boat1/MVC-021F.JPG", "Lady pushing wheel barrow in marina" , "Mark Dean" ,"mark001@graphics-world.com" ))

root.addPeer(boat2 = new element("boat2", "Boats & Boat Marina (Part-2)", null, "Mark Dean","mark001@graphics-world.com" ))
 boat2.addKid(new element(null, "Jetty", "../images/boats/boat2/MVC-001F.JPG", "Boats tied up on jetty" , "Mark Dean" ,"mark001@graphics-world.com" ))
 boat2.addKid(new element(null, "Boats in Marina", "../images/boats/boat2/MVC-002F.JPG", "Lots of boats in Marina" , "Mark Dean" ,"mark001@graphics-world.com" ))
 boat2.addKid(new element(null, "Boats in Marina", "../images/boats/boat2/MVC-005F.JPG", "Boats lined up" , "Mark Dean" ,"mark001@graphics-world.com" ))
 boat2.addKid(new element(null, "Man by Boat", "../images/boats/boat2/MVC-006F.JPG", "Man next to boat" , "Mark Dean" ,"mark001@graphics-world.com" ))
 boat2.addKid(new element(null, "Cruiser", "../images/boats/boat2/MVC-007F.JPG", "Front end of a cruiser " , "Mark Dean" ,"mark001@graphics-world.com" ))
 boat2.addKid(new element(null, "Man working", "../images/boats/boat2/MVC-008F.JPG", "Man working near boat" , "Mark Dean" ,"mark001@graphics-world.com" ))
 boat2.addKid(new element(null, "Motorcycle parked", "../images/boats/boat2/MVC-009F.JPG", "A motorcycle parked in th marina" , "Mark Dean" ,"mark001@graphics-world.com" ))
 boat2.addKid(new element(null, "Red Phone Box", "../images/boats/boat2/MVC-010F.JPG", "The phone box in the marina" , "Mark Dean" ,"mark001@graphics-world.com" ))
 boat2.addKid(new element(null, "Harbour", "../images/boats/boat2/MVC-013F.JPG", "Marina & Harbour view" , "Mark Dean" ,"mark001@graphics-world.com" ))
 boat2.addKid(new element(null, "Small Jetty", "../images/boats/boat2/MVC-014F.JPG", "Small jetty with outboards" , "Mark Dean" ,"mark001@graphics-world.com" ))


root.addPeer(airport = new element("airport", "Airport & Planes (Part-1 Cloudy Day May1998)", null, "Ian Cook","cookian@easynet.co.uk" ))
 airport.addKid(new element(null, "Monarch airplane", "../images/airport/d11/MVC-001F.JPG", "Gatwick, approaching runway" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport.addKid(new element(null, "Several Plans", "../images/airport/d11/MVC-002F.JPG", "Gatwick, Plane heading to runway" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport.addKid(new element(null, "Terminal", "../images/airport/d11/MVC-003F.JPG", "Gatwick, Planes at terminal" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport.addKid(new element(null, "BA Jumbo", "../images/airport/d11/MVC-004F.JPG", "Moving to terminal" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport.addKid(new element(null, "BA Jumbo landing", "../images/airport/d11/MVC-005F.JPG", "Jumbo jet landing" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport.addKid(new element(null, "Monarch airplane", "../images/airport/d11/MVC-006F.JPG", "Moving to runway" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport.addKid(new element(null, "Second after takeoff", "../images/airport/d11/MVC-007F.JPG", "Distant plane after takeoff" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport.addKid(new element(null, "Plane after landing", "../images/airport/d11/MVC-008F.JPG", "Plane moving towards terminals" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport.addKid(new element(null, "Plane landing", "../images/airport/d11/MVC-009F.JPG", "Close up of plane about to land" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport.addKid(new element(null, "Just landed", "../images/airport/d11/MVC-010F.JPG", "Touchdown of plane, smoke from wheels" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport.addKid(new element(null, "Ready for takoff", "../images/airport/d11/MVC-011F.JPG", "Plane mowing towards runway" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport.addKid(new element(null, "Moving out of terminal", "../images/airport/d11/MVC-012F.JPG", "Plane leaving terminal" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport.addKid(new element(null, "Two planes", "../images/airport/d11/MVC-013F.JPG", "Taking off and moving towards runway" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport.addKid(new element(null, "Man and steps", "../images/airport/d11/MVC-014F.JPG", "Airport worker near airplane steps" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport.addKid(new element(null, "Plane towtruck", "../images/airport/d11/MVC-015F.JPG", "Towtruck leaving plane ready for takeoff" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport.addKid(new element(null, "Works", "../images/airport/d11/MVC-016F.JPG", "Airport hanger and works" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport.addKid(new element(null, "Planes", "../images/airport/d11/MVC-017F.JPG", "Two planes in terminal" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport.addKid(new element(null, "Prop plane landing", "../images/airport/d11/MVC-018F.JPG", "Twin prop landing on runway" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport.addKid(new element(null, "Sky Chef", "../images/airport/d11/MVC-019F.JPG", "Sky Chef lorry driving to planes" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport.addKid(new element(null, "Mono Rail", "../images/airport/d11/MVC-020F.JPG", "Mono rail trains between terminals" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport.addKid(new element(null, "Plane landing", "../images/airport/d11/MVC-021F.JPG", "Plane landing on runway" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport.addKid(new element(null, "Planes in terminal", "../images/airport/d11/MVC-022F.JPG", "Several planes in terminal" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport.addKid(new element(null, "Twin prop", "../images/airport/d11/MVC-023F.JPG", "Twin prop plane about to land" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport.addKid(new element(null, "Workman", "../images/airport/d11/MVC-024F.JPG", "Airport workman walking" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 
root.addPeer(airport2 = new element("airport2", "Airport & Planes (Part-2 Inside Terminal May1998)", null, "Ian Cook","cookian@easynet.co.uk" ))
 airport2.addKid(new element(null, "People waiting", "../images/airport/d14/MVC-001F.JPG", "Several people waiting for passengers" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport2.addKid(new element(null, "People arrived", "../images/airport/d14/MVC-002F.JPG", "Two boys back from holiday" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport2.addKid(new element(null, "Lady and Baggage", "../images/airport/d14/MVC-003F.JPG", "Lady with baggage and trolly waiting" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport2.addKid(new element(null, "Airport view", "../images/airport/d14/MVC-004F.JPG", "Many people in the airport teminal" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport2.addKid(new element(null, "Man up high", "../images/airport/d14/MVC-005F.JPG", "Man on balcony (blurred images could have a use)" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport2.addKid(new element(null, "Info and tickets", "../images/airport/d14/MVC-006F.JPG", "Information and ticket points" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport2.addKid(new element(null, "Flight Screens", "../images/airport/d14/MVC-007F.JPG", "3 flight screens up high" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport2.addKid(new element(null, "Oldman and Woman", "../images/airport/d14/MVC-008F.JPG", "Old couple walking in airport" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport2.addKid(new element(null, "Pilot", "../images/airport/d14/MVC-009F.JPG", "A Pilot walking pass arrivals" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport2.addKid(new element(null, "Many people", "../images/airport/d14/MVC-010F.JPG", "Many people walking by in the busy airport" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport2.addKid(new element(null, "Airport signs", "../images/airport/d14/MVC-011F.JPG", "Several signs giving people directions" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport2.addKid(new element(null, "People greating", "../images/airport/d14/MVC-012F.JPG", "People greating each other after arrival" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport2.addKid(new element(null, "Man and newspaper", "../images/airport/d14/MVC-013F.JPG", "A Man with newspaper walking by" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport2.addKid(new element(null, "Man and steps", "../images/airport/d14/MVC-014F.JPG", "Airport worker near airplane steps" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport2.addKid(new element(null, "Legs", "../images/airport/d14/MVC-015F.JPG", "Two peoples legs whilst waiting for arrivals" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport2.addKid(new element(null, "Many people", "../images/airport/d14/MVC-016F.JPG", "Old Young people moving about in airport" , "Ian Cook" ,"cookian@easynet.co.uk" ))

 root.addPeer(airport3 = new element("airport3", "Airport & Planes (Part-3 Sunny Day May1998)", null, "Ian Cook","cookian@easynet.co.uk" ))
 airport3.addKid(new element(null, "Plane Landing", "../images/airport/d15/MVC-001F.JPG", "Plane about to land" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport3.addKid(new element(null, "Plane landed", "../images/airport/d15/MVC-002F.JPG", "Plane has just laned" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport3.addKid(new element(null, "TWA plane tail", "../images/airport/d15/MVC-003F.JPG", "TWA tail of plane with man below", "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport3.addKid(new element(null, "TWA pushed out", "../images/airport/d15/MVC-004F.JPG", "TWA plane being pushed out with men guiding" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport3.addKid(new element(null, "Flight Control", "../images/airport/d15/MVC-005F.JPG", "Flight control twoer and plane below" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport3.addKid(new element(null, "Tower", "../images/airport/d15/MVC-006F.JPG", "Plane passing flight tower" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport3.addKid(new element(null, "Monarch Landing", "../images/airport/d15/MVC-007F.JPG", "A Monarch plane landing" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport3.addKid(new element(null, "Moving out", "../images/airport/d15/MVC-008F.JPG", "Plane moving towards runway" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport3.addKid(new element(null, "Appraching Terminal", "../images/airport/d15/MVC-009F.JPG", "Plane after landing moving to termials" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport3.addKid(new element(null, "Near Terminal", "../images/airport/d15/MVC-010F.JPG", "Plane about to dock with terminal" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport3.addKid(new element(null, "Distant plane", "../images/airport/d15/MVC-011F.JPG", "Plane in distance taking off" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport3.addKid(new element(null, "Planes & trucks", "../images/airport/d15/MVC-012F.JPG", "Plane and baggage trucks" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport3.addKid(new element(null, "Airport Bus", "../images/airport/d15/MVC-013F.JPG", "Airport bus driving" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport3.addKid(new element(null, "Service", "../images/airport/d15/MVC-014F.JPG", "Several service trucks near plane with open tail door" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport3.addKid(new element(null, "Van", "../images/airport/d15/MVC-015F.JPG", "Van Driving pass" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport3.addKid(new element(null, "Baggade vans", "../images/airport/d15/MVC-016F.JPG", "Baggage vans followinge each other" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport3.addKid(new element(null, "Van", "../images/airport/d15/MVC-017F.JPG", "Van Driving pass" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport3.addKid(new element(null, "Monarch Docking", "../images/airport/d15/MVC-018F.JPG", "Monarch plane docking in terminal" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport3.addKid(new element(null, "Sevral docked planes", "../images/airport/d15/MVC-019F.JPG", "Over 5 planes in line docked at terminal" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport3.addKid(new element(null, "Virgin Express", "../images/airport/d15/MVC-020F.JPG", "Virgin Express plane about to leave" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport3.addKid(new element(null, "Baggage Lorry", "../images/airport/d15/MVC-021F.JPG", "Baggage lorry passing by. Bardwire in front" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport3.addKid(new element(null, "Spectators", "../images/airport/d15/MVC-022F.JPG", "People watching the planes langing" , "Ian Cook" ,"cookian@easynet.co.uk" ))

 root.addPeer(airport4 = new element("airport4", "Airport & Planes (Part-4 Sunny Day May1998)", null, "Ian Cook","cookian@easynet.co.uk" ))
 airport4.addKid(new element(null, "BA plane", "../images/airport/d16/MVC-001F.JPG", "BA plane heading towards runway for takeoff" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport4.addKid(new element(null, "Plane taking off", "../images/airport/d16/MVC-002F.JPG", "Plane in distance taking off" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport4.addKid(new element(null, "Plane Climbing", "../images/airport/d16/MVC-003F.JPG", "Plane gaining altitude after takeoff", "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport4.addKid(new element(null, "Continental plane", "../images/airport/d16/MVC-004F.JPG", "Plane just leaving terminal man guiding" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport4.addKid(new element(null, "Continental plane", "../images/airport/d16/MVC-005F.JPG", "Plane ready to disconnect from tow truck" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport4.addKid(new element(null, "Landing", "../images/airport/d16/MVC-006F.JPG", "Plane before landing" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport4.addKid(new element(null, "3 trucks", "../images/airport/d16/MVC-007F.JPG", "3 trucks waiting for plane to dock" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport4.addKid(new element(null, "Service vans", "../images/airport/d16/MVC-008F.JPG", "More service lorries by plane" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport4.addKid(new element(null, "Tow Truck", "../images/airport/d16/MVC-009F.JPG", "Tow truck moving away from plane with man near by" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport4.addKid(new element(null, "Traffic Tower", "../images/airport/d16/MVC-010F.JPG", "Tower with no planes in front" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport4.addKid(new element(null, "Plane landing", "../images/airport/d16/MVC-011F.JPG", "Plane landing on runway" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport4.addKid(new element(null, "A twin prop", "../images/airport/d16/MVC-012F.JPG", "Twin prop plane landing" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport4.addKid(new element(null, "European Plane", "../images/airport/d16/MVC-013F.JPG", "A European plane near terminal" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport4.addKid(new element(null, "Monarch approaching terminal", "../images/airport/d16/MVC-014F.JPG", "Plane about to dock" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport4.addKid(new element(null, "Taking off", "../images/airport/d16/MVC-015F.JPG", "Plane taking off" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport4.addKid(new element(null, "Twin prop", "../images/airport/d16/MVC-016F.JPG", "Another twin prop appraching runway" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport4.addKid(new element(null, "Fuel lorry", "../images/airport/d16/MVC-017F.JPG", "A fuel lorry moving towards a plane" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport4.addKid(new element(null, "Jumbo", "../images/airport/d16/MVC-018F.JPG", "A stationary jumbo jet" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport4.addKid(new element(null, "Security cameras", "../images/airport/d16/MVC-019F.JPG", "Airport security cameras" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport4.addKid(new element(null, "Airport Hotel", "../images/airport/d16/MVC-020F.JPG", "A large airport hotel" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport4.addKid(new element(null, "On Runway", "../images/airport/d16/MVC-021F.JPG", "Plane about to go round corner on runway" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport4.addKid(new element(null, "Landing plane", "../images/airport/d16/MVC-022F.JPG", "Plane just about to touch down on runway" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport4.addKid(new element(null, "Plane taking off", "../images/airport/d16/MVC-023F.JPG", "Plane about to leave runway" , "Ian Cook" ,"cookian@easynet.co.uk" ))
 airport4.addKid(new element(null, "Plane in air", "../images/airport/d16/MVC-024F.JPG", "Plane after taking off showing exhaust" , "Ian Cook" ,"cookian@easynet.co.uk" ))



// info.open = true
//root.open = true
}


function dr()
{
  print("<DL>")
root.draw() 

}



