<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

linkdir=""; // global variable to be overrided

<!-- Script: Dynamic New icon -->
<!-- Begin
function checkNew(date) 
{
  expdate = new Date(date);
  curdate = new Date();
  if(expdate.getTime() > curdate.getTime())
    document.write('<img src="/picscss/new.gif" alt="New">');
}
// End -->


<!-- Script: Dynamic Update icon -->
<!-- Begin
function checkUpdated(date) 
{
  expdate = new Date(date);
  curdate = new Date();
  if(expdate.getTime() > curdate.getTime())
    document.write('<img src="/picscss/updated.gif" alt="Updated">');
}
// End -->


<!-- Script: More icon and link -->
<!-- Begin
function InsertMore(link,date) 
{
  document.writeln('<span class="nobreak"><A HREF=' + link + '>');
  document.writeln('<IMG src="/picscss/morearrow2.gif" style="border:0" ALT="Click to see more">More</A>');
  document.writeln('<span class="moredate"> ' + date + '</span></span>');
}
// End -->


<!-- Script: Fading buttons -->
<!-- Begin
nstep = 3
rgdiff = 5
rmax = 255
rmax2 = 235
rmin = 195 
speed = 30
timer = null
links = 0 

//for each link option you need to make a new Array;
apl = new Array();

function fadeImg2(teller)
{
  apl[teller][1] = -1;
  changes();
}

function fadeImgend2(teller)
{
  apl[teller][1] = 1;
  setTimeout("changes()",speed);
}

function changes()
{
  next_loop = true;
  for( i=0; i<links; i++ )
  {
    obj = document.getElementById("link_table").rows[i].cells[0];
    clr = apl[i][0];
    if(apl[i][1] != 0)
    { 
      clr += nstep*apl[i][1];
      if( clr > apl[i][2] )
      { 
        clr = apl[i][2];
        apl[i][1] = 0;
      }
      else if( clr < rmin )
      { 
        clr = rmin;
        apl[i][1] = 0;
      }
      else
        next_loop = false;
      apl[i][0] = clr;
    };
    obj.style.backgroundColor="rgb("+clr+","+(clr-rgdiff)+","+235+")"
  }
  if (next_loop == false)
    timer = setTimeout("changes()",speed)
  else
    clearTimeout(timer);
}
// End -->


sbar = [
  [ "Home", 15 ], 
  [ "Regions", 9 ],
  [ "Clubs", 6 ],
  [ "Resources", 11 ],
  [ "FilmLibrary", 6 ],
  [ "MovieOnline", 0 ],
  [ "UNICA", 4 ],
  [ "Links", 0 ],
  [ "SiteMap", 0 ]
];


<!-- Script: Standard Sidebar -->
<!-- Begin

function SetupSidebar(category)
{
  links = 0; 
  for( i=0; i<sbar.length; i++ )
  {
    apl[links] = new Array(rmax,0,rmax2);
    fadeImgend2(links); 
    ++links;

    if( sbar[i][0]==category )
    {
      for( j=0; j<sbar[i][1]; j++ )
      {
        apl[links] = new Array(rmax,0,rmax);
        ++links;
      }    
    }
  };
};




<!-- Script: print a joke randomly (or a fixed one if given) -->

<!-- Begin
function InsertJoke(which)
{
  q=new Array()
q[0]="Are there pills to cure hypochondria?"
q[1]="One in 10 does not understand binary. Thankfully, the other one does."
q[2]="Do you think the word Exit is on the way out?"
q[3]="If you cut off a pigs snout, will it become disgruntled?"
q[4]="What do you call a fish with no eyes? A fsh."
q[5]="You invented Tipp Ex, correct me if I'm wrong."
q[6]="When they first invented the clock how did they know what time to set it to?"
q[7]="Light travels faster than sound. That is why some people appear bright until you hear them speak."
q[8]="Don't be irreplaceable. If you cannot be replaced, you cannot be promoted."
q[9]="Always remember that you are unique. Just like everyone else."
q[10]="Never test the depth of the water with both feet."
q[11]="If at first you dont succeed, skydiving is probably not for you."
q[12]="If you lend someone £20 and never see that person again, it was probably a wise investment."
q[13]="Should you stare at a carton of orange juice just because it says concentrate?"
q[14]="If you asked for the Self Help section in a bookshop, would they leave you to find it by yourself? "
q[15]="Is there another word for synonym?"
q[16]="Does an engine driver need training?"
q[17]="Does a bus driver need coaching?"
q[18]="Why is there only one Monopolies Commission?"
q[19]="What should you do if you see an endangered animal eating an endangered plant?"
q[20]="Can vegetarians eat animal crackers?"
q[21]="If a mime artist is arrested do they tell him he has the right to talk?"
q[22]="Why do kamikaze pilots wear helmets?"
q[23]="Do cannibals think clowns taste funny?"
q[24]="What was the best thing BEFORE sliced bread?"
q[25]="Why do we press harder on a remote control when we know the batteries are flat?"
q[26]="Why do people believe you when you say there are 4 billion stars but check when you say the paint is wet?"
q[27]="If you sent someone a consignment of polystyrene, what would you pack it in?"
q[28]="If it's true that we are here to help others, what are the others doing?"
q[29]="Why do people pay to go up tall buildings then put money in binoculars to look at things on the ground?"
q[30]="Who copyrighted the copyright symbol?"
q[31]="Do fish ever get thirsty?"
q[32]="Why dont birds fall out of trees when they sleep?"
q[33]="What is so good about bees knees?"
q[34]="No one ever says +It's only a game+ when their team is winning."
q[35]="When you are in it up to your ears, keep your mouth shut."
q[36]="The surest sign that intelligent life exists elsewhere in the universe is that it has never tried to contact us."
q[37]="Why do our noses run and our feet smell?"
q[38]="If the Number 2 pencil is so popular, why is it still Number 2?"
q[39]="Remember, half the people you know are below average."
q[40]="Trust in God, but lock your car."

howMany = q.length
  while( which < 0 || which > howMany-1 || isNaN(which))
    which = parseInt(Math.random()*(howMany))

  quox=q[which];
  document.writeln('<table BORDER="0" CELLPADDING="2" ALIGN="Center" BGCOLOR="#0000ff">');
  document.writeln('<tr><td><font color="Yellow"><b>' + q[which] + '</b></font></td></tr></table>');
};
// End -->




<!-- Script: Select and print a random picture linking to an article -->

<!-- Begin
function InsertPic(spacing)
{
picblock=new Array()
picblock[0]='<a href="http:central/ericcooper.htm"><img src="pics_indexpage/jesus-2000.jpg" class="imgBorder" alt="jsus"></a>'
picblock[1]='<a href="http:central/kaybamfordburnell.htm"><img src="pics_indexpage/day-kenyas-bush.jpg" class="imgBorder" alt="Kenya"></a>'
picblock[2]='<a href="http:film-making/225a.html"><img src="pics_indexpage/225.jpg" class="imgBorder" alt="225"></a>'
picblock[3]='<a href="http:film-making/6685.html"><img src="pics_indexpage/6885.jpg" class="imgBorder" alt="6885"></a>'
picblock[4]='<a href="http:film-making/art-at-calke.html"><img src="pics_indexpage/art-at-calke.jpg" class="imgBorder" alt="calce"></a>'
picblock[5]='<a href="http:film-making/art-of-glass.html"><img src="pics_indexpage/art-of-glass.jpg" class="imgBorder" alt="glass"></a>'
picblock[6]='<a href="http:film-making/battle-of-organges-the.html"><img src="pics_indexpage/battle-oranges.jpg" class="imgBorder" alt="ornge"></a>'
picblock[7]='<a href="http:film-making/birth-of-a-notion.html"><img src="pics_indexpage/birth-of-a-notion.jpg" class="imgBorder" alt="birth"></a>'
picblock[8]='<a href="http:film-making/biyik.html"><img src="pics_indexpage/biyik.jpg" class="imgBorder" alt="biyik"></a>'
picblock[9]='<a href="http:film-making/cabot.html"><img src="pics_indexpage/cabot.jpg" class="imgBorder" alt="cabot"></a>'
picblock[10]='<a href="http:film-making/camille-claudel.html"><img src="pics_indexpage/camille-claudel.jpg" class="imgBorder" alt="clodel"></a>'
picblock[11]='<a href="http:film-making/car-park.html"><img src="pics_indexpage/car-park.jpg" class="imgBorder" alt="park"></a>'
picblock[12]='<a href="http:film-making/chester.html"><img src="pics_indexpage/chester.jpg" class="imgBorder" alt="chstr"></a>'
picblock[13]='<a href="http:film-making/cinemascope.html"><img src="pics_indexpage/cinemascope.jpg" class="imgBorder" alt="scope"></a>'
picblock[14]='<a href="http:film-making/clipjoint.html"><img src="pics_indexpage/clipjoint.jpg" class="imgBorder" alt="clip"></a>'
picblock[15]='<a href="http:film-making/coffee-break.html"><img src="pics_indexpage/coffee-break.jpg" class="imgBorder" alt="break"></a>'
picblock[16]='<a href="http:film-making/confidentially.html"><img src="pics_indexpage/confidentially.jpg" class="imgBorder" alt="conf"></a>'
picblock[17]='<a href="http:film-making/control-duel.html"><img src="pics_indexpage/control-duel.jpg" class="imgBorder" alt="duel"></a>'
picblock[18]='<a href="http:film-making/designer-babies.html"><img src="pics_indexpage/designer-babies.jpg" class="imgBorder" alt="babe"></a>'
picblock[19]='<a href="http:film-making/dirty-style-blues.html"><img src="pics_indexpage/dirty-style-blues.jpg" class="imgBorder" alt="dirty"></a>'
picblock[20]='<a href="http:film-making/dropping-off.html"><img src="pics_indexpage/dropping-off.jpg" class="imgBorder" alt="drop"></a>'
picblock[21]='<a href="http:film-making/elegia.html"><img src="pics_indexpage/elegia.jpg" class="imgBorder" alt="elgia"></a>'
picblock[22]='<a href="http:film-making/encounter.html"><img src="pics_indexpage/encounter.jpg" class="imgBorder" alt="meet"></a>'
picblock[23]='<a href="http:film-making/endings.html"><img src="pics_indexpage/endings.jpg" class="imgBorder" alt="end"></a>'
picblock[24]='<a href="http:film-making/extinction-event3.html"><img src="pics_indexpage/extinction-event.jpg" class="imgBorder" alt="end"></a>'
picblock[25]='<a href="http:film-making/fantabulous.html"><img src="pics_indexpage/fantabulous.jpg" class="imgBorder" alt="fab"></a>'
picblock[26]='<a href="http:film-making/final-report.html"><img src="pics_indexpage/final-report.jpg" class="imgBorder" alt="rep"></a>'
picblock[27]='<a href="http:film-making/fishermans-tale-a.htm"><img src="pics_indexpage/fishermans-tale.jpg" class="imgBorder" alt="fish"></a>'
picblock[28]='<a href="http:film-making/fixey-phoney.html"><img src="pics_indexpage/fixey-phoney.jpg" class="imgBorder" alt="handy"></a>'
picblock[29]='<a href="http:film-making/flat-out.html"><img src="pics_indexpage/flat-out.jpg" class="imgBorder" alt="flat"></a>'
picblock[30]='<a href="http:film-making/from-sunflower-to-olive-tree.html"><img src="pics_indexpage/sunflower-olive.jpg" class="imgBorder" alt="gogh"></a>'
picblock[31]='<a href="http:film-making/grand-sale-the.html"><img src="pics_indexpage/grand-sale.jpg" class="imgBorder" alt="sale"></a>'
picblock[32]='<a href="http:film-making/greenhouse.html"><img src="pics_indexpage/greenhouse.jpg" class="imgBorder" alt="green"></a>'
picblock[33]='<a href="http:film-making/hannah.html"><img src="pics_indexpage/hannah.jpg" class="imgBorder" alt="Hann"></a>'
picblock[34]='<a href="http:film-making/holiday-on-ice.html"><img src="pics_indexpage/holiday-on-ice.jpg" class="imgBorder" alt="onice"></a>'
picblock[35]='<a href="http:film-making/how-time-flies.html"><img src="pics_indexpage/time-flies.jpg" class="imgBorder" alt="time"></a>'
picblock[36]='<a href="http:film-making/i-hate-bananas.html"><img src="pics_indexpage/hate-bananas.jpg" class="imgBorder" alt="nana"></a>'
picblock[37]='<a href="http:film-making/i-just-knew.html"><img src="pics_indexpage/i-just-knew.jpg" class="imgBorder" alt="knew"></a>'
picblock[38]='<a href="http:film-making/its-an-alpaca.html"><img src="pics_indexpage/its-an-alpaca.jpg" class="imgBorder" alt="alpca"></a>'
picblock[39]='<a href="http:film-making/josephs-faith.html"><img src="pics_indexpage/josephs-faith.jpg" class="imgBorder" alt="joe"></a>'
picblock[40]='<a href="http:film-making/kevin-a-life.html"><img src="pics_indexpage/kevin.jpg" class="imgBorder" alt="kevin"></a>'
picblock[41]='<a href="http:film-making/la-trace1.html"><img src="pics_indexpage/la-trace.jpg" class="imgBorder" alt="trace"></a>'
picblock[42]='<a href="http:film-making/lecture-the.html"><img src="pics_indexpage/lecture.jpg" class="imgBorder" alt="lect"></a>'
picblock[43]='<a href="http:film-making/little-aeroplane-the.html"><img src="pics_indexpage/little-aeroplane.jpg" class="imgBorder" alt="plane"></a>'
picblock[44]='<a href="http:film-making/little-wonders-of-nature.html"><img src="pics_indexpage/little-wonders-of-nature.jpg" class="imgBorder" alt="ntr"></a>'
picblock[45]='<a href="http:film-making/living-in-a-box.html"><img src="pics_indexpage/living-in-box.jpg" class="imgBorder" alt="box"></a>'
picblock[46]='<a href="http:film-making/living-in-the-past.html"><img src="pics_indexpage/living-in-past.jpg" class="imgBorder" alt="oast"></a>'
picblock[47]='<a href="http:film-making/making-music.html"><img src="pics_indexpage/making-music.jpg" class="imgBorder" alt="msic"></a>'
picblock[48]='<a href="http:film-making/melissa.html"><img src="pics_indexpage/melissa.jpg" class="imgBorder" alt="Mlis"></a>'
picblock[49]='<a href="http:film-making/moody-waters.html"><img src="pics_indexpage/moody-waters.jpg" class="imgBorder" alt="mood"></a>'
picblock[50]='<a href="http:film-making/mother.html"><img src="pics_indexpage/mother.jpg" class="imgBorder" alt="mum"></a>'
picblock[51]='<a href="http:film-making/my-darling-john.html"><img src="pics_indexpage/my-darling-john.jpg" class="imgBorder" alt="john"></a>'
picblock[52]='<a href="http:film-making/nexus.html"><img src="pics_indexpage/nexus.jpg" class="imgBorder" alt="nexu"></a>'
picblock[53]='<a href="http:film-making/night-of-the-full-moon.html"><img src="pics_indexpage/night-of-the-full-moon.jpg" class="imgBorder" alt="moon"></a>'
picblock[54]='<a href="http:film-making/ninja-man.html"><img src="pics_indexpage/ninja-man.jpg" class="imgBorder" alt="ninja"></a>'
picblock[55]='<a href="http:film-making/nothing-girl.html"><img src="pics_indexpage/nothing-girl.jpg" class="imgBorder" alt="noth"></a>'
picblock[56]='<a href="http:film-making/on-silk.html"><img src="pics_indexpage/on-silk.jpg" class="imgBorder" alt="silk"></a>'
picblock[57]='<a href="http:film-making/packin-it-in.html"><img src="pics_indexpage/packin-it-in.jpg" class="imgBorder" alt="pack"></a>'
picblock[58]='<a href="http:film-making/park-for-all-seasons-a.html"><img src="pics_indexpage/park-all-seasons.jpg" class="imgBorder" alt="park"></a>'
picblock[59]='<a href="http:film-making/party-the.html"><img src="pics_indexpage/the-party.jpg" class="imgBorder" alt="prty"></a>'
picblock[60]='<a href="http:film-making/pelicans-of-guana.html"><img src="pics_indexpage/pelicans-guana.jpg" class="imgBorder" alt="plcan"></a>'
picblock[61]='<a href="http:film-making/people-and-places.html"><img src="pics_indexpage/people-places.jpg" class="imgBorder" alt="pepl"></a>'
picblock[62]='<a href="http:film-making/perfect.html"><img src="pics_indexpage/perfect.jpg" class="imgBorder" alt="prfct"></a>'
picblock[63]='<a href="http:film-making/pinstripe.html"><img src="pics_indexpage/pinstripe.jpg" class="imgBorder" alt="pin"></a>'
picblock[64]='<a href="http:film-making/picasso-of-the-pier.html"><img src="pics_indexpage/picasso-pier.jpg" class="imgBorder" alt="pica"></a>'
picblock[65]='<a href="http:film-making/pint-in-front-telly.html"><img src="pics_indexpage/pint-telly.jpg" class="imgBorder" alt="pint"></a>'
picblock[66]='<a href="http:film-making/plan-b.html"><img src="pics_indexpage/plan-b.jpg" class="imgBorder" alt="plnb"></a>'
picblock[67]='<a href="http:film-making/plitvice-magic.html"><img src="pics_indexpage/plitvice.jpg" class="imgBorder" alt="Plit"></a>'
picblock[68]='<a href="http:film-making/prodigy-the.html"><img src="pics_indexpage/prodigy.jpg" class="imgBorder" alt="prod"></a>'
picblock[69]='<a href="http:film-making/rather-different-year-a.html"><img src="pics_indexpage/Different_Year.jpg" class="imgBorder" alt="year"></a>'
picblock[70]='<a href="http:film-making/reasons.html"><img src="pics_indexpage/reasons.jpg" class="imgBorder" alt="reas"></a>'
picblock[71]='<a href="http:film-making/remote-control.html"><img src="pics_indexpage/remote_control.jpg" class="imgBorder" alt="mote"></a>'
picblock[72]='<a href="http:film-making/rhythm-in-steam.html"><img src="pics_indexpage/rhythm-steam.jpg" class="imgBorder" alt="stem"></a>'
picblock[73]='<a href="http:film-making/rocks.html"><img src="pics_indexpage/rocks.jpg" class="imgBorder" alt="rock"></a>'
picblock[74]='<a href="http:film-making/shoot-the.html"><img src="pics_indexpage/the-shoot.jpg" class="imgBorder" alt="shot"></a>'
picblock[75]='<a href="http:film-making/side-by-side.html"><img src="pics_indexpage/side-by-side.jpg" class="imgBorder" alt="side"></a>'
picblock[76]='<a href="http:film-making/siege-of-vicksburg-the.html"><img src="pics_indexpage/siege-vicksburg.jpg" class="imgBorder" alt="sieg"></a>'
picblock[77]='<a href="http:film-making/silence-after-the-day.html"><img src="pics_indexpage/silence-of-the-day.jpg" class="imgBorder" alt="hush"></a>'
picblock[78]='<a href="http:film-making/sinking.html"><img src="pics_indexpage/sinking.jpg" class="imgBorder" alt="sink"></a>'
picblock[79]='<a href="http:film-making/smith-gary.html"><img src="pics_indexpage/smith-gary.jpg" class="imgBorder" alt="smit"></a>'
picblock[80]='<a href="http:film-making/snails-pace.html"><img src="pics_indexpage/snails-pace.jpg" class="imgBorder" alt="snail"></a>'
picblock[81]='<a href="http:film-making/someone-for-everyone.html"><img src="pics_indexpage/someone.jpg" class="imgBorder" alt="some"></a>'
picblock[82]='<a href="http:film-making/spider.html"><img src="pics_indexpage/spider.jpg" class="imgBorder" alt="spider"></a>'
picblock[83]='<a href="http:film-making/splash-of-colour-a.html"><img src="pics_indexpage/splash-colour.jpg" class="imgBorder" alt="colr"></a>'
picblock[84]='<a href="http:film-making/stripped.html"><img src="pics_indexpage/stripped.jpg" class="imgBorder" alt="strip"></a>'
picblock[85]='<a href="http:film-making/suspicion-the.html"><img src="pics_indexpage/suspicion.jpg" class="imgBorder" alt="susp"></a>'
picblock[86]='<a href="http:film-making/tel-702.html"><img src="pics_indexpage/tel-702.jpg" class="imgBorder" alt="702"></a>'
picblock[87]='<a href="http:film-making/thames-tunnel-the.html"><img src="pics_indexpage/tunnel.jpg" class="imgBorder" alt="tunl"></a>'
picblock[88]='<a href="http:film-making/thames-tunnel-the.html"><img src="pics_indexpage/tunnel.jpg" class="imgBorder" alt="tunl"></a>'
picblock[89]='<a href="http:film-making/thunderkids.html"><img src="pics_indexpage/thunderkids.jpg" class="imgBorder" alt="kids"></a>'
picblock[90]='<a href="http:film-making/timeline.html"><img src="pics_indexpage/timeline.jpg" class="imgBorder" alt="time"></a>'
picblock[91]='<a href="http:film-making/training/release-the.html"><img src="pics_indexpage/release.jpg" class="imgBorder" alt="rels"></a>'
picblock[92]='<a href="http:film-making/u482.html"><img src="pics_indexpage/u482.jpg" class="imgBorder" alt="u482"></a>'
picblock[93]='<a href="http:film-making/unlocking-young-minds.html"><img src="pics_indexpage/unlocking.jpg" class="imgBorder" alt="unlk"></a>'
picblock[94]='<a href="http:film-making/until-you-smile.html"><img src="pics_indexpage/until-you-smile.jpg" class="imgBorder" alt="smil"></a>'
picblock[95]='<a href="http:film-making/verge.html"><img src="pics_indexpage/verge.jpg" class="imgBorder" alt="verg"></a>'
picblock[96]='<a href="http:film-making/verruckte-herze-auge.html"><img src="pics_indexpage/verruckte.jpg" class="imgBorder" alt="verr"></a>'
picblock[97]='<a href="http:film-making/vision-21.html"><img src="pics_indexpage/vision21.jpg" class="imgBorder" alt="vis"></a>'
picblock[98]='<a href="http:film-making/visitor-the.html"><img src="pics_indexpage/visit.jpg" class="imgBorder" alt="vist"></a>'
picblock[99]='<a href="http:film-making/wall-of-tears.html"><img src="pics_indexpage/wall-tears.jpg" class="imgBorder" alt="wall"></a>'
picblock[100]='<a href="http:film-making/wet-cigars-for-berlin.html"><img src="pics_indexpage/wet-cigars.jpg" class="imgBorder" alt="cigr"></a>'
picblock[101]='<a href="http:film-making/would-you-rather-watch-fireworks.html"><img src="pics_indexpage/fireworks.jpg" class="imgBorder" alt="fire"></a>'
picblock[102]='<a href="http:film-making2/afars.html"><img src="pics_indexpage/afars.jpg" class="imgBorder" alt="afars"></a>'
picblock[103]='<a href="http:film-making2/an-amateur-auteur.html"><img src="pics_indexpage/amateur-auteur.jpg" class="imgBorder" alt="autr"></a>'
picblock[104]='<a href="http:film-making2/bannockburn.html"><img src="pics_indexpage/bannockburn.jpg" class="imgBorder" alt="bnock"></a>'
picblock[105]='<a href="http:film-making2/behind-the-wire.html"><img src="pics_indexpage/behind-the-wire.jpg" class="imgBorder" alt="wire"></a>'
picblock[106]='<a href="http:film-making2/birthday.html"><img src="pics_indexpage/birthday.jpg" class="imgBorder" alt="birth" ></a>'
picblock[107]='<a href="http:film-making2/braxteds.html"><img src="pics_indexpage/braxteds.jpg" class="imgBorder" alt="braxt"></a>'
picblock[108]='<a href="http:film-making2/bushaltestelle.html"><img src="pics_indexpage/bushaltestelle.jpg" class="imgBorder" alt="bus"></a>'
picblock[109]='<a href="http:film-making2/clive-ody.html"><img src="pics_indexpage/jug-band-blues.jpg" class="imgBorder" alt="jug"></a>'
picblock[110]='<a href="http:film-making2/clive-ody.html"><img src="pics_indexpage/passage-of-time.jpg" class="imgBorder" alt="ody"></a>'
picblock[111]='<a href="http:film-making2/crossing-batty-moss.html"><img src="pics_indexpage/battymoss.jpg" class="imgBorder" alt="batty></a>'
picblock[112]='<a href="http:film-making2/domein.html"><img src="pics_indexpage/domein.jpg" class="imgBorder" alt="dmein"></a>'
picblock[113]='<a href="http:film-making2/following-americas-indians.html"><img src="pics_indexpage/american-indians.jpg" class="imgBorder" alt="injun"></a>'
picblock[114]='<a href="http:film-making2/guardian-of-the-river.html"><img src="pics_indexpage/guardian-of-the-river.jpg" class="imgBorder" alt="gard"></a>'
picblock[115]='<a href="http:film-making2/guernsey-coppersmith.html"><img src="pics_indexpage/guernsey-coppersmith.jpg" class="imgBorder" alt="copr"></a>'
picblock[116]='<a href="http:film-making2/head.html"><img src="pics_indexpage/head.jpg" class="imgBorder" alt="head"></a>'
picblock[117]='<a href="http:film-making2/heatwave.html"><img src="pics_indexpage/heatwave.jpg" class="imgBorder" alt="htwv"></a>'
picblock[118]='<a href="http:film-making2/high-road-from-lhasa.html"><img src="pics_indexpage/lhasa.jpg" class="imgBorder" alt="lhasa"></a>'
picblock[119]='<a href="http:film-making2/insect-man.html"><img src="pics_indexpage/insect.jpg" class="imgBorder" alt="bug"></a>'
picblock[120]='<a href="http:film-making2/jean-pierre-hue.html"><img src="pics_indexpage/better-harvest.jpg" class="imgBorder" alt="hrvst"></a>'
picblock[121]='<a href="http:film-making2/jean-pierre-hue.html"><img src="pics_indexpage/fiery-nature.jpg" class="imgBorder" alt="nat"></a>'
picblock[122]='<a href="http:film-making2/last-drop.html"><img src="pics_indexpage/last-drop.jpg" class="imgBorder" alt="drop"></a>'
picblock[123]='<a href="http:film-making2/lifes-little-gaps.html"><img src="pics_indexpage/gaps.jpg" class="imgBorder" alt="gaps"></a>'
picblock[124]='<a href="http:film-making2/listen.html"><img src="pics_indexpage/listen.jpg" class="imgBorder" alt="list"></a>'
picblock[125]='<a href="http:film-making2/live-love-laugh-cry.html"><img src="pics_indexpage/livelove.jpg" class="imgBorder" alt="live"></a>'
picblock[126]='<a href="http:film-making2/living-history.html"><img src="pics_indexpage/living-history.jpg" class="imgBorder" alt="hist"></a>'
picblock[127]='<a href="http:film-making2/loss.html"><img src="pics_indexpage/leek-loss.jpg" class="imgBorder" alt="loss"></a>'
picblock[128]='<a href="http:film-making2/mahnmal.html"><img src="pics_indexpage/mahnmal.jpg" class="imgBorder" alt="mahn"></a>'
picblock[129]='<a href="http:film-making2/messenger.html"><img src="pics_indexpage/messenger.jpg" class="imgBorder" alt="mess"></a>'
picblock[130]='<a href="http:film-making2/missing.html"><img src="pics_indexpage/missing.jpg" class="imgBorder" alt="miss"></a>'
picblock[131]='<a href="http:film-making2/mosel-gold.html"><img src="pics_indexpage/mosel-gold.jpg" class="imgBorder" alt="msel"></a>'
picblock[132]='<a href="http:film-making2/my-passion.html"><img src="pics_indexpage/passion.jpg" class="imgBorder" alt="pass"></a>'
picblock[133]='<a href="http:film-making2/national-interest.html"><img src="pics_indexpage/in-national-interest.jpg" class="imgBorder" alt="ntnl"></a>'
picblock[134]='<a href="http:film-making2/network.html"><img src="pics_indexpage/network.jpg" class="imgBorder" alt="netw"></a>'
picblock[135]='<a href="http:film-making2/oldiegarage.html"><img src="pics_indexpage/oldiegarage.jpg" class="imgBorder" alt="oldie"></a>'
picblock[136]='<a href="http:film-making2/opus6-no8.html"><img src="pics_indexpage/opus6.jpg" class="imgBorder" alt="op6"></a>'
picblock[137]='<a href="http:film-making2/our-environment.html"><img src="pics_indexpage/our-environment.jpg" class="imgBorder" alt="envir"></a>'
picblock[138]='<a href="http:film-making2/portrait-of-henk-van-kooten.html"><img src="pics_indexpage/portrait-henk-van-kooten.jpg" class="imgBorder" alt="koot"></a>'
picblock[139]='<a href="http:film-making2/right-way-the.html"><img src="pics_indexpage/right-way.jpg" class="imgBorder" alt="right"></a>'
picblock[140]='<a href="http:film-making2/ritorno.html"><img src="pics_indexpage/ritorno.jpg" class="imgBorder" alt="rito"></a>'
picblock[141]='<a href="http:film-making2/somewhere-up-the-mountain.html"><img src="pics_indexpage/mount.jpg" class="imgBorder" alt="mont"></a>'
picblock[142]='<a href="http:film-making2/spiegel.html"><img src="pics_indexpage/mirror.jpg" class="imgBorder" alt="mror"></a>'
picblock[143]='<a href="http:film-making2/splendid-people.html"><img src="pics_indexpage/splendid-people.jpg" class="imgBorder" alt="splen"></a>'
picblock[144]='<a href="http:film-making2/tall-story.html"><img src="pics_indexpage/tall-story.jpg" class="imgBorder" alt="tall"></a>'
picblock[145]='<a href="http:film-making2/the-lifesavers.html"><img src="pics_indexpage/lifesavers.jpg" class="imgBorder" alt="save"></a>'
picblock[146]='<a href="http:film-making2/the-secret.html"><img src="pics_indexpage/secret.jpg" class="imgBorder" alt="secr"></a>'
picblock[147]='<a href="http:film-making2/thy-fair-imperfect-shade.html"><img src="pics_indexpage/thy-fair-imperfect-shade.jpg" class="imgBorder" alt="shad"></a>'
picblock[148]='<a href="http:film-making2/trap.html"><img src="pics_indexpage/trap.jpg" class="imgBorder" alt="trap"></a>'
picblock[149]='<a href="http:film-making2/unbelievable.html"><img src="pics_indexpage/unbelievable.jpg" class="imgBorder" alt="unbe"></a>'
picblock[150]='<a href="http:film-making2/valentijn.html"><img src="pics_indexpage/valentine.jpg" class="imgBorder" alt="vale"></a>'
picblock[151]='<a href="http:film-making2/weir-here.html"><img src="pics_indexpage/weir-here.jpg" class="imgBorder" alt="weir"></a>'
picblock[152]='<a href="http:film-making2/will-ye-go-to-flanders.html"><img src="pics_indexpage/will-ye-go-to-flanders.jpg" class="imgBorder" alt="go"></a>'
picblock[153]='<a href="http:film-making3/a-bridge-too-far.html"><img src="pics_indexpage/a-bridge-too-far.jpg" class="imgBorder" alt="2far"></a>'
picblock[154]='<a href="http:film-making3/amber.html"><img src="pics_indexpage/amber.jpg" class="imgBorder" alt="Amber"></a>'
picblock[155]='<a href="http:film-making3/aus-der-seele.html"><img src="pics_indexpage/aus-der-seele.jpg" class="imgBorder" alt="Seele"></a>'
picblock[156]='<a href="http:film-making3/background-figure.html"><img src="pics_indexpage/background.jpg" class="imgBorder" alt="Bgnd"></a>'
picblock[157]='<a href="http:film-making3/bad-day-at-the-office.html"><img src="pics_indexpage/bad-day.jpg" class="imgBorder" alt="badd"></a>'
picblock[158]='<a href="http:film-making3/bears-of-anan-creek.html"><img src="pics_indexpage/bears.jpg" class="imgBorder" alt="Bears"></a>'
picblock[159]='<a href="http:film-making3/bedwetter.html"><img src="pics_indexpage/bedwetter.jpg" class="imgBorder" alt="Bed"></a>'
picblock[160]='<a href="http:film-making3/blowing-in-the-wind.html"><img src="pics_indexpage/blowing-in-wind.jpg" class="imgBorder" alt="wind"></a>'
picblock[161]='<a href="http:film-making3/bob-lorrimer.html"><img src="pics_indexpage/callback.jpg" class="imgBorder" alt="CallB"></a>'
picblock[162]='<a href="http:film-making3/bob-lorrimer.html"><img src="pics_indexpage/chrysalis.jpg" class="imgBorder" alt="chrslis"></a>'
picblock[163]='<a href="http:film-making3/bob-lorrimer.html"><img src="pics_indexpage/drill.jpg" class="imgBorder" alt="Drill"></a>'
picblock[164]='<a href="http:film-making3/bob-lorrimer.html"><img src="pics_indexpage/riverofdreams.jpg" class="imgBorder" alt="drms"></a>'
picblock[165]='<a href="http:film-making3/braving-the-elements.html"><img src="pics_indexpage/brave-elements.jpg" class="imgBorder" alt="brave"></a>'
picblock[166]='<a href="http:film-making3/building-bridges.html"><img src="pics_indexpage/bridges.jpg" class="imgBorder" alt="Brig"></a>'
picblock[167]='<a href="http:film-making3/bulldozer.html"><img src="pics_indexpage/bulldozer.jpg" class="imgBorder" alt="Bull"></a>'
picblock[168]='<a href="http:film-making3/city-of-songs.html"><img src="pics_indexpage/cityofsongs.jpg" class="imgBorder" alt="songs"></a>'
picblock[169]='<a href="http:film-making3/commitment.html"><img src="pics_indexpage/commitment.jpg" class="imgBorder" alt="cmit"></a>'
picblock[170]='<a href="http:film-making3/deathgame.html"><img src="pics_indexpage/deathgame.jpg" class="imgBorder" alt="death"></a>'
picblock[171]='<a href="http:film-making3/dentophobia.html"><img src="pics_indexpage/dentophobia.jpg" class="imgBorder" alt="Dento"></a>'
picblock[172]='<a href="http:film-making3/der-marterer.html"><img src="pics_indexpage/der-marterer.jpg" class="imgBorder" alt="mrter"></a>'
picblock[173]='<a href="http:film-making3/exit-song.html"><img src="pics_indexpage/exit-song.jpg" class="imgBorder" alt="exit"></a>'
picblock[174]='<a href="http:film-making3/fallen-leaves.html"><img src="pics_indexpage/fallen-leaves.jpg" class="imgBorder" alt="leave"></a>'
picblock[175]='<a href="http:film-making3/finding-the-holy-grail.html"><img src="pics_indexpage/grail.jpg" class="imgBorder" alt="grail"></a>'
picblock[176]='<a href="http:film-making3/flicker.html"><img src="pics_indexpage/flicker.jpg" class="imgBorder" alt="flckr"></a>'
picblock[177]='<a href="http:film-making3/flowers-for-father.html"><img src="pics_indexpage/flowers-for-father.jpg" class="imgBorder" alt="vater"></a>'
picblock[178]='<a href="http:film-making3/for-a-few-rupees.html"><img src="pics_indexpage/rupees.jpg" class="imgBorder" alt="rupee"></a>'
picblock[179]='<a href="http:film-making3/gronde.html"><img src="pics_indexpage/FirstFlighthour.jpg" class="imgBorder" alt="flight"></a>'
picblock[180]='<a href="http:film-making3/gronde.html"><img src="pics_indexpage/lost-fear.jpg" class="imgBorder" alt="fear"></a>'
picblock[181]='<a href="http:film-making3/gronde.html"><img src="pics_indexpage/Passion-for-the-Wind.jpg" class="imgBorder" alt="wind"></a>'
picblock[182]='<a href="http:film-making3/guitar.html"><img src="pics_indexpage/guitar.jpg" class="imgBorder" alt="Guitar"></a>'
picblock[183]='<a href="http:film-making3/hugo+the-runaway.html"><img src="pics_indexpage/hugo.jpg" class="imgBorder" alt="hugo"></a>'
picblock[184]='<a href="http:film-making3/in-the-trenches.html"><img src="pics_indexpage/trenches.jpg" class="imgBorder" alt="trnch"></a>'
picblock[185]='<a href="http:film-making3/is-atherstone-losing-it.html"><img src="pics_indexpage/is-atherstone-losing-it.jpg" class="imgBorder" alt="athstn"></a>'
picblock[186]='<a href="http:film-making3/loss.html"><img src="pics_indexpage/loss.jpg" class="imgBorder" alt="Loss"></a>'
picblock[187]='<a href="http:film-making3/man-virgin-flesh-eating.html"><img src="pics_indexpage/monster-vamp.jpg" class="imgBorder" alt="Vamp"></a>'
picblock[188]='<a href="http:film-making3/meet-me-at-st-pancras.html"><img src="pics_indexpage/pancras.jpg" class="imgBorder" alt="pncrs"></a>'
picblock[189]='<a href="http:film-making3/my-heart-is-broken.html"><img src="pics_indexpage/myheartisbrokenunseen.jpg" class="imgBorder" alt="hart"></a>'
picblock[190]='<a href="http:film-making3/nebenan.html"><img src="pics_indexpage/nebenan.jpg" class="imgBorder" alt="Next"></a>'
picblock[191]='<a href="http:film-making3/ocean-messengers.html"><img src="pics_indexpage/ocean-messengers.jpg" class="imgBorder" alt="Ocan"></a>'
picblock[192]='<a href="http:film-making3/oller.html"><img src="pics_indexpage/camargue.jpg" class="imgBorder" alt="Cmarg"></a>'
picblock[193]='<a href="http:film-making3/oller.html"><img src="pics_indexpage/montseny.jpg" class="imgBorder" alt="Montseny"></a>'
picblock[194]='<a href="http:film-making3/quand-paola-part.html"><img src="pics_indexpage/paola.jpg" class="imgBorder" alt="Paola"></a>'
picblock[195]='<a href="http:film-making3/rent-a-mate.html"><img src="pics_indexpage/rentamate.jpg" class="imgBorder" alt="Rent"></a>'
picblock[196]='<a href="http:film-making3/retro-cine.html"><img src="pics_indexpage/retro.jpg" class="imgBorder" alt="retro"></a>'
picblock[197]='<a href="http:film-making3/rex.html"><img src="pics_indexpage/rex.jpg" class="imgBorder" alt="rex"></a>'
picblock[198]='<a href="http:film-making3/road-to-passchendaele.html"><img src="pics_indexpage/road-to-passchedaele.jpg" class="imgBorder" alt="road"></a>'
picblock[199]='<a href="http:film-making3/scenario-of-true-nature.html"><img src="pics_indexpage/scenario.jpg" class="imgBorder" alt="scnro"></a>'
picblock[200]='<a href="http:film-making3/stories-of-green-knowe.html"><img src="pics_indexpage/green-knowe.jpg" class="imgBorder" alt="grnkn"></a>'
picblock[201]='<a href="http:film-making3/sublime.html"><img src="pics_indexpage/sublime.jpg" class="imgBorder" alt="Sblm"></a>'
picblock[202]='<a href="http:film-making3/tales-of-landarmy.html"><img src="pics_indexpage/tales-of-landarmy.jpg" class="imgBorder" alt="land"></a>'
picblock[203]='<a href="http:film-making3/the-fires-went-out.html"><img src="pics_indexpage/fires-went-out.jpg" class="imgBorder" alt="fires"></a>'
picblock[204]='<a href="http:film-making3/the-secret.html"><img src="pics_indexpage/secret-09.jpg" class="imgBorder" alt="scret"></a>'
picblock[205]='<a href="http:film-making3/the-sherpas-song.html"><img src="pics_indexpage/sherpas.jpg" class="imgBorder" alt="shrp"></a>'
picblock[206]='<a href="http:film-making3/together-an-african-success.html"><img src="pics_indexpage/together.jpg" class="imgBorder" alt="africa"></a>'
picblock[207]='<a href="http:film-making3/venezuela.html"><img src="pics_indexpage/folks.jpg" class="imgBorder" alt="folks"></a>'
picblock[208]='<a href="http:film-making3/venezuela.html"><img src="pics_indexpage/otherworld.jpg" class="imgBorder" alt="Other"></a>'
picblock[209]='<a href="http:resources/calvert.htm"><img src="pics_indexpage/war-starfighters.jpg" class="imgBorder" alt="star"></a>'
picblock[210]='<a href="http:resources/overtime.html"><img src="pics_indexpage/overtime.jpg" class="imgBorder" alt="Otime"></a>'
picblock[211]='<a href="http:resources/passing_by/Olga_Spatova.html"><img src="pics_indexpage/passing-by.jpg" class="imgBorder" alt="pass"></a>'
picblock[212]='<a href="http:training/gough/hawaii01.html"><img src="pics_indexpage/breath-life.jpg" class="imgBorder" alt="aloha"></a>'
picblock[213]='<a href="http:training/tonyjacobs.html"><img src="pics_indexpage/yellow-tulips.jpg" class="imgBorder" alt="Jcobs"></a>'
picblock[214]='<a href="http:film-making3/secrets.html"><img src="pics_indexpage/secrets.jpg" class="imgBorder" alt="Secrs"></a>'

  var randomorder=new Array()
  var the_one
  var z=210
  for (i=0;i<picblock.length;i++)
  randomorder[i]=i

  while (z<picblock.length) {
    the_one=Math.floor(Math.random()*picblock.length)
    if (picblock[the_one]!="_selected!"){
      document.write(picblock[the_one]+spacing)
      picblock[the_one]="_selected!"
      z++
    }
  }
}



// End -->





<!-- Script: Join IAC -->
<!-- Begin
function InsertJoinIAC()
{ 
  document.writeln('<hr><p class="joinIAC">');
  document.writeln('<img WIDTH=80 hspace=10 HEIGHT=42 ALT="IAC logo" BORDER=0'); 
  document.writeln('ALIGN=Left SRC="/pics/iacbutton.jpg">');
  document.writeln("Don't work alone, join the IAC for all the help, encouragement ");
  document.writeln("and information you need.");
  document.writeln('<a HREF="/central/member.htm" >Click for membership details.</a><br clear=left></p>');
};
// End -->


<!-- Script: Standard footer -->  --

<!-- Begin
function InsertPageupdated()
{ 
  days = [ "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" ];
  months = [ "January", "February", "March", "April", "May", "Jun", "July", "August", "September", "October", "November", "December" ];

  dateObj = new Date(document.lastModified)
  wday = days[dateObj.getDay()]
  lmonth = months[dateObj.getMonth()]
  date = dateObj.getDate()
  fyear = dateObj.getYear()

  if(fyear < 2000) fyear += 1900

  document.writeln("Page updated on " + wday + ", " + date + " " + lmonth + " " + fyear + "</P>");
};
// End -->


<!-- Script: Standard footer 2 -->
<!-- Begin
function InsertLastUpdated( DateStr )
{ 
  document.writeln('<HR class="footnote">');
  document.writeln('<p class="footnote">');
  document.writeln("Page updated on " + DateStr + "</P>");

  disclaimer="Authors' views are not necessarily those of The Institute of Amateur Cinematographers";
  document.writeln('<p class="footnote2">' + disclaimer + '</p>');

  document.writeln('<p class="footnote2">Free JavaScripts provided<br>');
  document.writeln('by <a href="http://javascriptsource.com">The JavaScript Source</a></p>');
};
// End -->


<!-- Script: Greeting message -->
<!-- Begin
function InsertGreeting()
{
  datetoday = new Date();
  timenow=datetoday.getTime();
  datetoday.setTime(timenow);

  thehour = datetoday.getHours();
  if(thehour > 18) 
    display = "Evening"
  else if(thehour >12) 
    display = "Afternoon"
  else 
    display = "Morning";

  greeting = ("Good " + display + "!");
  document.writeln(greeting)
};
// End -->


<!-- Script: Open new window -->
<!-- Begin
function Start(page) 
{
  OpenWin = this.open(page, "CtrlWindow", "toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes");
}
// End -->


var newwindow;
function clublist(url)
{
    newwindow=window.open(url,'name','height=500,width=540,resizable=yes,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}

