<!-- hide from old browsers
/////////////////////////////////////////////////////////////////////////////
// Random function for images.
// Created: 30/05/01
/////////////////////////////////////////////////////////////////////////////
function makeArray(len) {
   for (var i = 0; i < len; i++) this[i] = null;
   this.length = len;
}

rlink = new makeArray(8);

rlink[0] = "<img src=\"/rch/media/RCH_L1.jpg\" width=\"230\" height=\"279\" border=\"0\" alt=\"RCH graphic\">";
rlink[1] = "<img src=\"/rch/media/RCH_L2.jpg\" width=\"230\" height=\"279\" border=\"0\" alt=\"RCH graphic\">";
rlink[2] = "<img src=\"/rch/media/RCH_L3.jpg\" width=\"230\" height=\"279\" border=\"0\" alt=\"RCH graphic\">";
rlink[3] = "<img src=\"/rch/media/RCH_L5.jpg\" width=\"230\" height=\"279\" border=\"0\" alt=\"RCH graphic\">";
rlink[4] = "<img src=\"/rch/media/RCH_L6.jpg\" width=\"230\" height=\"279\" border=\"0\" alt=\"RCH graphic\">";
rlink[5] = "<img src=\"/rch/media/RCH_L7.jpg\" width=\"230\" height=\"279\" border=\"0\" alt=\"RCH graphic\">";
rlink[6] = "<img src=\"/rch/media/RCH_L9.jpg\" width=\"230\" height=\"279\" border=\"0\" alt=\"RCH graphic\">";
rlink[7] = "<img src=\"/rch/media/RCH_L11.jpg\" width=\"230\" height=\"279\" border=\"0\" alt=\"RCH graphic\">";

linkNum = rlink.length;
randomNum = Math.floor(Math.random()*linkNum);

// stop hiding -->