ÿþ<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Melvill &amp; Moon : Baines Collection</title> <meta name="description" content="Equippers and suppliers of iconic safari luggage, campaign furniture, classic safari accessories and seat covers." /> <meta name="keywords" content="Melvill, Moon, Safari, Africa, Luggage, Furniture, Seat Covers, Pioneers, Adventurers, Royal Geographical Soceity, maps, illustrations, documents, photographs, etchings, colonial relics, RGS, handbags" /> <meta name="rating" content="General"> <meta name="robots" content="ALL"> <meta name="revisit-after" content="7 days"> <link rel="shortcut icon" href="http://www.melvillandmoon.com/web/favicon.ico" > <link rel="stylesheet" type="text/css" href="styles/default.css" webstripperwas="styles/default.css" > </head> <body> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <div > <div align="center" id="floatdiv" style="position:absolute;width:100%;height:1px;left:0px;top:0px; padding:16px;background:#967C57 url(images/menu_bk.gif);" border:2px solid #2266AA"> <a href="index.html" webstripperwas="index.html" class="TopLink">Home</a> | <a href="about_us.html" webstripperwas="about_us.html" class="TopLink">About Us</a> | <a href="luggage.html" webstripperwas="luggage.html" class="TopLink">Luggage</a> | <a href="seat_covers.html" webstripperwas="seat_covers.html" class="TopLink">Seat Covers</a> | <a href="colonial_relics.html" webstripperwas="colonial_relics.html" class="TopLink">Colonial Relics</a> | <a href="rgs_collection.html" webstripperwas="rgs_collection.html" class="TopLink">Exploration Collection</a> | <a href="events.aspx" class="TopLink">Marketing &amp; Events</a> | <a href="retailers.aspx" class="TopLink">Retailers</a> | <a href="contact.aspx" class="TopLink">Contact Us</a></div> </div> <tr> <font color ="#DACEAB" >.</font> </tr> <tr> <font color ="#DACEAB" >.</font> </tr> </tr> <script type="text/javascript"><!-- /* Script by: www.jtricks.com * Version: 20071017 * Latest version: * www.jtricks.com/javascript/navigation/floating.html */ var floatingMenuId = 'floatdiv'; var floatingMenu = { targetX: 0, targetY: 0, hasInner: typeof (window.innerWidth) == 'number', hasElement: typeof (document.documentElement) == 'object' && typeof (document.documentElement.clientWidth) == 'number', menu: document.getElementById ? document.getElementById(floatingMenuId) : document.all ? document.all[floatingMenuId] : document.layers[floatingMenuId] }; floatingMenu.move = function() { floatingMenu.menu.style.left = floatingMenu.nextX + 'px'; floatingMenu.menu.style.top = floatingMenu.nextY + 'px'; } floatingMenu.computeShifts = function() { var de = document.documentElement; floatingMenu.shiftX = floatingMenu.hasInner ? pageXOffset : floatingMenu.hasElement ? de.scrollLeft : document.body.scrollLeft; if (floatingMenu.targetX < 0) { floatingMenu.shiftX += floatingMenu.hasElement ? de.clientWidth : document.body.clientWidth; } floatingMenu.shiftY = floatingMenu.hasInner ? pageYOffset : floatingMenu.hasElement ? de.scrollTop : document.body.scrollTop; if (floatingMenu.targetY < 0) { if (floatingMenu.hasElement && floatingMenu.hasInner) { // Handle Opera 8 problems floatingMenu.shiftY += de.clientHeight > window.innerHeight ? window.innerHeight : de.clientHeight } else { floatingMenu.shiftY += floatingMenu.hasElement ? de.clientHeight : document.body.clientHeight; } } } floatingMenu.calculateCornerX = function() { if (floatingMenu.targetX != 'center') return floatingMenu.shiftX + floatingMenu.targetX; var width = parseInt(floatingMenu.menu.offsetWidth); var cornerX = floatingMenu.hasElement ? (floatingMenu.hasInner ? pageXOffset : document.documentElement.scrollLeft) + (document.documentElement.clientWidth - width) / 2 : document.body.scrollLeft + (document.body.clientWidth - width) / 2; return cornerX; }; floatingMenu.calculateCornerY = function() { if (floatingMenu.targetY != 'center') return floatingMenu.shiftY + floatingMenu.targetY; var height = parseInt(floatingMenu.menu.offsetHeight); // Handle Opera 8 problems var clientHeight = floatingMenu.hasElement && floatingMenu.hasInner && document.documentElement.clientHeight > window.innerHeight ? window.innerHeight : document.documentElement.clientHeight var cornerY = floatingMenu.hasElement ? (floatingMenu.hasInner ? pageYOffset : document.documentElement.scrollTop) + (clientHeight - height) / 2 : document.body.scrollTop + (document.body.clientHeight - height) / 2; return cornerY; }; floatingMenu.doFloat = function() { // Check if reference to menu was lost due // to ajax manipuations if (!floatingMenu.menu) { menu = document.getElementById ? document.getElementById(floatingMenuId) : document.all ? document.all[floatingMenuId] : document.layers[floatingMenuId]; initSecondary(); } var stepX, stepY; floatingMenu.computeShifts(); var cornerX = floatingMenu.calculateCornerX(); var stepX = (cornerX - floatingMenu.nextX) * .07; if (Math.abs(stepX) < .5) { stepX = cornerX - floatingMenu.nextX; } var cornerY = floatingMenu.calculateCornerY(); var stepY = (cornerY - floatingMenu.nextY) * .07; if (Math.abs(stepY) < .5) { stepY = cornerY - floatingMenu.nextY; } if (Math.abs(stepX) > 0 || Math.abs(stepY) > 0) { floatingMenu.nextX += stepX; floatingMenu.nextY += stepY; floatingMenu.move(); } setTimeout('floatingMenu.doFloat()', 20); }; // addEvent designed by Aaron Moore floatingMenu.addEvent = function(element, listener, handler) { if (typeof element[listener] != 'function' || typeof element[listener + '_num'] == 'undefined') { element[listener + '_num'] = 0; if (typeof element[listener] == 'function') { element[listener + 0] = element[listener]; element[listener + '_num']++; } element[listener] = function(e) { var r = true; e = (e) ? e : window.event; for (var i = element[listener + '_num'] - 1; i >= 0; i--) { if (element[listener + i](e) == false) r = false; } return r; } } //if handler is not already stored, assign it for (var i = 0; i < element[listener + '_num']; i++) if (element[listener + i] == handler) return; element[listener + element[listener + '_num']] = handler; element[listener + '_num']++; }; floatingMenu.init = function() { floatingMenu.initSecondary(); floatingMenu.doFloat(); }; // Some browsers init scrollbars only after // full document load. floatingMenu.initSecondary = function() { floatingMenu.computeShifts(); floatingMenu.nextX = floatingMenu.calculateCornerX(); floatingMenu.nextY = floatingMenu.calculateCornerY(); floatingMenu.move(); } if (document.layers) floatingMenu.addEvent(window, 'onload', floatingMenu.init); else { floatingMenu.init(); floatingMenu.addEvent(window, 'onload', floatingMenu.initSecondary); } //--></script> </span> <script type="text/javascript"><!-- function move_upper_left() { floatingMenu.targetX = 10; floatingMenu.targetY = 10; } function move_upper_center() { floatingMenu.targetX = 'center'; floatingMenu.targetY = 10; } function move_upper_right() { floatingMenu.targetX = -250; floatingMenu.targetY = 10; } function move_center_left() { floatingMenu.targetX = 10; floatingMenu.targetY = 'center'; } function move_center_center() { floatingMenu.targetX = 'center'; floatingMenu.targetY = 'center'; } function move_center_right() { floatingMenu.targetX = -250; floatingMenu.targetY = 'center'; } function move_lower_left() { floatingMenu.targetX = 10; floatingMenu.targetY = -110; } function move_lower_center() { floatingMenu.targetX = 'center'; floatingMenu.targetY = -110; } function move_lower_right() { floatingMenu.targetX = -250; floatingMenu.targetY = -110; } //--></script> <tr> <td><table width="935" height="90%" border="0" align="center" cellpadding="0" cellspacing="2"> <tr> <td height="732" valign="top" style="background:url(images/rgs_back.jpg) center top no-repeat;padding-top:104px;" ><div align="center"> <table width="125" border="0" cellspacing="8" cellpadding="0"> <tr> <td colspan="5" valign="top"><div align="center"><strong>Click on the pictures below to view them in a larger size with ordering information.</strong></div></td> </tr> <tr> <tr> <td valign="top"> <!-- 2 : 2 --><table width="125" border="0" cellspacing="0" cellpadding="0"> <tr><td><img src="images/rgs/b1.gif" webstripperwas="images/rgs/b1.gif" width="5" height="5"></td><td style="background:url(images/rgs/b2.gif) repeat-x top left" ><img src="images/rgs/b2.gif" webstripperwas="images/rgs/b2.gif" width="115" height="5"></td><td><img src="images/rgs/b3.gif" webstripperwas="images/rgs/b3.gif" width="11" height="5"></td></tr> <tr><td style="background:url(images/rgs/b4.gif) repeat-y top left" ><img src="images/rgs/b4.gif" webstripperwas="images/rgs/b4.gif" width="5" height="114"></td><td valign="top" bgcolor="#FFFFFF"><a href="rgs/S0011794.aspx" webstripperwas="rgs/S0011794.html" title="Several sharks on beach at Angra Peguena"><img src="images/rgs/thumbs/S0011794.jpg" webstripperwas="images/rgs/thumbs/S0011794.jpg" border="0" alt="Several sharks on beach at Angra Peguena"></a></td> <td style="background:url(images/rgs/b5.gif) repeat-y top left" ><img src="images/rgs/b5.gif" webstripperwas="images/rgs/b5.gif" width="11" height="114"></td></tr> <tr><td><img src="images/rgs/b6.gif" webstripperwas="images/rgs/b6.gif" width="5" height="13"></td><td style="background:url(images/rgs/b7.gif) repeat-x top left" ><img src="images/rgs/b7.gif" webstripperwas="images/rgs/b7.gif" width="115" height="13"></td><td><img src="images/rgs/b8.gif" webstripperwas="images/rgs/b8.gif" width="11" height="13"></td></tr> <tr><td colspan="3"><div align="center"><a href="rgs/S0011794.aspx" webstripperwas="rgs/S0011794.html" title="Several sharks on beach at Angra Peguena" class="SubLink">S0011794</a></div></td></tr> </table> </td> <td valign="top"> <!-- 0 : 1 --><table width="125" border="0" cellspacing="0" cellpadding="0"> <tr><td><img src="images/rgs/b1.gif" webstripperwas="images/rgs/b1.gif" width="5" height="5"></td><td style="background:url(images/rgs/b2.gif) repeat-x top left" ><img src="images/rgs/b2.gif" webstripperwas="images/rgs/b2.gif" width="115" height="5"></td><td><img src="images/rgs/b3.gif" webstripperwas="images/rgs/b3.gif" width="11" height="5"></td></tr> <tr><td style="background:url(images/rgs/b4.gif) repeat-y top left" ><img src="images/rgs/b4.gif" webstripperwas="images/rgs/b4.gif" width="5" height="114"></td><td valign="top" bgcolor="#FFFFFF"><a href="rgs/S0010011.aspx" webstripperwas="rgs/S0010011.html" title="Blauive Wildebesst Kookoong or Brindled Gnu..."><img src="images/rgs/thumbs/S0010011.jpg" webstripperwas="images/rgs/thumbs/S0010011.jpg" border="0" alt="Blauive Wildebesst Kookoong or Brindled Gnu..."></a></td> <td style="background:url(images/rgs/b5.gif) repeat-y top left" ><img src="images/rgs/b5.gif" webstripperwas="images/rgs/b5.gif" width="11" height="114"></td></tr> <tr><td><img src="images/rgs/b6.gif" webstripperwas="images/rgs/b6.gif" width="5" height="13"></td><td style="background:url(images/rgs/b7.gif) repeat-x top left" ><img src="images/rgs/b7.gif" webstripperwas="images/rgs/b7.gif" width="115" height="13"></td><td><img src="images/rgs/b8.gif" webstripperwas="images/rgs/b8.gif" width="11" height="13"></td></tr> <tr><td colspan="3"><div align="center"><a href="rgs/S0010011.aspx" webstripperwas="rgs/S0010011.html" title="Blauive Wildebesst Kookoong or Brindled Gnu..." class="SubLink">S0010011</a></div></td></tr> </table> </td> <td valign="top"> <!-- 0 : 2 --><table width="125" border="0" cellspacing="0" cellpadding="0"> <tr><td><img src="images/rgs/b1.gif" webstripperwas="images/rgs/b1.gif" width="5" height="5"></td><td style="background:url(images/rgs/b2.gif) repeat-x top left" ><img src="images/rgs/b2.gif" webstripperwas="images/rgs/b2.gif" width="115" height="5"></td><td><img src="images/rgs/b3.gif" webstripperwas="images/rgs/b3.gif" width="11" height="5"></td></tr> <tr><td style="background:url(images/rgs/b4.gif) repeat-y top left" ><img src="images/rgs/b4.gif" webstripperwas="images/rgs/b4.gif" width="5" height="114"></td><td valign="top" bgcolor="#FFFFFF"><a href="rgs/S0011792.aspx" webstripperwas="rgs/S0011792.html" title="Measuring a Shark"><img src="images/rgs/thumbs/S0011792.jpg" webstripperwas="images/rgs/thumbs/S0011792.jpg" border="0" alt="Measuring a Shark"></a></td> <td style="background:url(images/rgs/b5.gif) repeat-y top left" ><img src="images/rgs/b5.gif" webstripperwas="images/rgs/b5.gif" width="11" height="114"></td></tr> <tr><td><img src="images/rgs/b6.gif" webstripperwas="images/rgs/b6.gif" width="5" height="13"></td><td style="background:url(images/rgs/b7.gif) repeat-x top left" ><img src="images/rgs/b7.gif" webstripperwas="images/rgs/b7.gif" width="115" height="13"></td><td><img src="images/rgs/b8.gif" webstripperwas="images/rgs/b8.gif" width="11" height="13"></td></tr> <tr><td colspan="3"><div align="center"><a href="rgs/S0011792.aspx" webstripperwas="rgs/S0011792.html" title="Measuring a Shark" class="SubLink">S0011792</a></div></td></tr> </table> </td> <td valign="top"> <!-- 0 : 3 --><table width="125" border="0" cellspacing="0" cellpadding="0"> <tr><td><img src="images/rgs/b1.gif" webstripperwas="images/rgs/b1.gif" width="5" height="5"></td><td style="background:url(images/rgs/b2.gif) repeat-x top left" ><img src="images/rgs/b2.gif" webstripperwas="images/rgs/b2.gif" width="115" height="5"></td><td><img src="images/rgs/b3.gif" webstripperwas="images/rgs/b3.gif" width="11" height="5"></td></tr> <tr><td style="background:url(images/rgs/b4.gif) repeat-y top left" ><img src="images/rgs/b4.gif" webstripperwas="images/rgs/b4.gif" width="5" height="114"></td><td valign="top" bgcolor="#FFFFFF"><a href="rgs/S0016179.aspx" webstripperwas="rgs/S0016179.html" title="Eland running from Damara with a spear"><img src="images/rgs/thumbs/S0016179.jpg" webstripperwas="images/rgs/thumbs/S0016179.jpg" border="0" alt="Eland running from Damara with a spear"></a></td> <td style="background:url(images/rgs/b5.gif) repeat-y top left" ><img src="images/rgs/b5.gif" webstripperwas="images/rgs/b5.gif" width="11" height="114"></td></tr> <tr><td><img src="images/rgs/b6.gif" webstripperwas="images/rgs/b6.gif" width="5" height="13"></td><td style="background:url(images/rgs/b7.gif) repeat-x top left" ><img src="images/rgs/b7.gif" webstripperwas="images/rgs/b7.gif" width="115" height="13"></td><td><img src="images/rgs/b8.gif" webstripperwas="images/rgs/b8.gif" width="11" height="13"></td></tr> <tr><td colspan="3"><div align="center"><a href="rgs/S0016179.aspx" webstripperwas="rgs/S0016179.html" title="Eland running from Damara with a spear" class="SubLink">S0016179</a></div></td></tr> </table> </td> <td valign="top"> <!-- 0 : 4 --><table width="125" border="0" cellspacing="0" cellpadding="0"> <tr><td><img src="images/rgs/b1.gif" webstripperwas="images/rgs/b1.gif" width="5" height="5"></td><td style="background:url(images/rgs/b2.gif) repeat-x top left" ><img src="images/rgs/b2.gif" webstripperwas="images/rgs/b2.gif" width="115" height="5"></td><td><img src="images/rgs/b3.gif" webstripperwas="images/rgs/b3.gif" width="11" height="5"></td></tr> <tr><td style="background:url(images/rgs/b4.gif) repeat-y top left" ><img src="images/rgs/b4.gif" webstripperwas="images/rgs/b4.gif" width="5" height="114"></td><td valign="top" bgcolor="#FFFFFF"><a href="rgs/S0011789.aspx" webstripperwas="rgs/S0011789.html" title="Comet and Meteor seen from camp"><img src="images/rgs/thumbs/S0011789.jpg" webstripperwas="images/rgs/thumbs/S0011789.jpg" border="0" alt="Comet and Meteor seen from camp"></a></td> <td style="background:url(images/rgs/b5.gif) repeat-y top left" ><img src="images/rgs/b5.gif" webstripperwas="images/rgs/b5.gif" width="11" height="114"></td></tr> <tr><td><img src="images/rgs/b6.gif" webstripperwas="images/rgs/b6.gif" width="5" height="13"></td><td style="background:url(images/rgs/b7.gif) repeat-x top left" ><img src="images/rgs/b7.gif" webstripperwas="images/rgs/b7.gif" width="115" height="13"></td><td><img src="images/rgs/b8.gif" webstripperwas="images/rgs/b8.gif" width="11" height="13"></td></tr> <tr><td colspan="3"><div align="center"><a href="rgs/S0011789.aspx" webstripperwas="rgs/S0011789.html" title="Comet and Meteor seen from camp" class="SubLink">S0011789</a></div></td></tr> </table> </td> </tr> <tr> <td valign="top"> <!-- 1 : 0 --><table width="125" border="0" cellspacing="0" cellpadding="0"> <tr><td><img src="images/rgs/b1.gif" webstripperwas="images/rgs/b1.gif" width="5" height="5"></td><td style="background:url(images/rgs/b2.gif) repeat-x top left" ><img src="images/rgs/b2.gif" webstripperwas="images/rgs/b2.gif" width="115" height="5"></td><td><img src="images/rgs/b3.gif" webstripperwas="images/rgs/b3.gif" width="11" height="5"></td></tr> <tr><td style="background:url(images/rgs/b4.gif) repeat-y top left" ><img src="images/rgs/b4.gif" webstripperwas="images/rgs/b4.gif" width="5" height="114"></td><td valign="top" bgcolor="#FFFFFF"><a href="rgs/S0011793.aspx" webstripperwas="rgs/S0011793.html" title="Branch of Buffalo Pear Tree showing fruit and..."><img src="images/rgs/thumbs/S0011793.jpg" webstripperwas="images/rgs/thumbs/S0011793.jpg" border="0" alt="Branch of Buffalo Pear Tree showing fruit and..."></a></td> <td style="background:url(images/rgs/b5.gif) repeat-y top left" ><img src="images/rgs/b5.gif" webstripperwas="images/rgs/b5.gif" width="11" height="114"></td></tr> <tr><td><img src="images/rgs/b6.gif" webstripperwas="images/rgs/b6.gif" width="5" height="13"></td><td style="background:url(images/rgs/b7.gif) repeat-x top left" ><img src="images/rgs/b7.gif" webstripperwas="images/rgs/b7.gif" width="115" height="13"></td><td><img src="images/rgs/b8.gif" webstripperwas="images/rgs/b8.gif" width="11" height="13"></td></tr> <tr><td colspan="3"><div align="center"><a href="rgs/S0011793.aspx" webstripperwas="rgs/S0011793.html" title="Branch of Buffalo Pear Tree showing fruit and..." class="SubLink">S0011793</a></div></td></tr> </table> </td> <td valign="top"> <!-- 1 : 1 --><table width="125" border="0" cellspacing="0" cellpadding="0"> <tr><td><img src="images/rgs/b1.gif" webstripperwas="images/rgs/b1.gif" width="5" height="5"></td><td style="background:url(images/rgs/b2.gif) repeat-x top left" ><img src="images/rgs/b2.gif" webstripperwas="images/rgs/b2.gif" width="115" height="5"></td><td><img src="images/rgs/b3.gif" webstripperwas="images/rgs/b3.gif" width="11" height="5"></td></tr> <tr><td style="background:url(images/rgs/b4.gif) repeat-y top left" ><img src="images/rgs/b4.gif" webstripperwas="images/rgs/b4.gif" width="5" height="114"></td><td valign="top" bgcolor="#FFFFFF"><a href="rgs/S0013568.aspx" webstripperwas="rgs/S0013568.html" title="Twig and fruit of salt water tree growing in..."><img src="images/rgs/thumbs/S0013568.jpg" webstripperwas="images/rgs/thumbs/S0013568.jpg" border="0" alt="Twig and fruit of salt water tree growing in..."></a></td> <td style="background:url(images/rgs/b5.gif) repeat-y top left" ><img src="images/rgs/b5.gif" webstripperwas="images/rgs/b5.gif" width="11" height="114"></td></tr> <tr><td><img src="images/rgs/b6.gif" webstripperwas="images/rgs/b6.gif" width="5" height="13"></td><td style="background:url(images/rgs/b7.gif) repeat-x top left" ><img src="images/rgs/b7.gif" webstripperwas="images/rgs/b7.gif" width="115" height="13"></td><td><img src="images/rgs/b8.gif" webstripperwas="images/rgs/b8.gif" width="11" height="13"></td></tr> <tr><td colspan="3"><div align="center"><a href="rgs/S0013568.aspx" webstripperwas="rgs/S0013568.html" title="Twig and fruit of salt water tree growing in..." class="SubLink">S0013568</a></div></td></tr> </table> </td> <td valign="top"> <!-- 1 : 2 --><table width="125" border="0" cellspacing="0" cellpadding="0"> <tr><td><img src="images/rgs/b1.gif" webstripperwas="images/rgs/b1.gif" width="5" height="5"></td><td style="background:url(images/rgs/b2.gif) repeat-x top left" ><img src="images/rgs/b2.gif" webstripperwas="images/rgs/b2.gif" width="115" height="5"></td><td><img src="images/rgs/b3.gif" webstripperwas="images/rgs/b3.gif" width="11" height="5"></td></tr> <tr><td style="background:url(images/rgs/b4.gif) repeat-y top left" ><img src="images/rgs/b4.gif" webstripperwas="images/rgs/b4.gif" width="5" height="114"></td><td valign="top" bgcolor="#FFFFFF"><a href="rgs/S0000059.aspx" webstripperwas="rgs/S0000059.html" title="The Ma Roberts' and Elephant in the Shallows..."><img src="images/rgs/thumbs/S0000059.jpg" webstripperwas="images/rgs/thumbs/S0000059.jpg" border="0" alt="The Ma Roberts' and Elephant in the Shallows..."></a></td> <td style="background:url(images/rgs/b5.gif) repeat-y top left" ><img src="images/rgs/b5.gif" webstripperwas="images/rgs/b5.gif" width="11" height="114"></td></tr> <tr><td><img src="images/rgs/b6.gif" webstripperwas="images/rgs/b6.gif" width="5" height="13"></td><td style="background:url(images/rgs/b7.gif) repeat-x top left" ><img src="images/rgs/b7.gif" webstripperwas="images/rgs/b7.gif" width="115" height="13"></td><td><img src="images/rgs/b8.gif" webstripperwas="images/rgs/b8.gif" width="11" height="13"></td></tr> <tr><td colspan="3"><div align="center"><a href="rgs/S0000059.aspx" webstripperwas="rgs/S0000059.html" title="The Ma Roberts' and Elephant in the Shallows..." class="SubLink">S0000059</a></div></td></tr> </table> </td> <td valign="top"> <!-- 1 : 3 --><table width="125" border="0" cellspacing="0" cellpadding="0"> <tr><td><img src="images/rgs/b1.gif" webstripperwas="images/rgs/b1.gif" width="5" height="5"></td><td style="background:url(images/rgs/b2.gif) repeat-x top left" ><img src="images/rgs/b2.gif" webstripperwas="images/rgs/b2.gif" width="115" height="5"></td><td><img src="images/rgs/b3.gif" webstripperwas="images/rgs/b3.gif" width="11" height="5"></td></tr> <tr><td style="background:url(images/rgs/b4.gif) repeat-y top left" ><img src="images/rgs/b4.gif" webstripperwas="images/rgs/b4.gif" width="5" height="114"></td><td valign="top" bgcolor="#FFFFFF"><a href="rgs/S0014501.aspx" webstripperwas="rgs/S0014501.html" title="Conde, a native of Tete (22 years old)"><img src="images/rgs/thumbs/S0014501.jpg" webstripperwas="images/rgs/thumbs/S0014501.jpg" border="0" alt="Conde, a native of Tete (22 years old)"></a></td> <td style="background:url(images/rgs/b5.gif) repeat-y top left" ><img src="images/rgs/b5.gif" webstripperwas="images/rgs/b5.gif" width="11" height="114"></td></tr> <tr><td><img src="images/rgs/b6.gif" webstripperwas="images/rgs/b6.gif" width="5" height="13"></td><td style="background:url(images/rgs/b7.gif) repeat-x top left" ><img src="images/rgs/b7.gif" webstripperwas="images/rgs/b7.gif" width="115" height="13"></td><td><img src="images/rgs/b8.gif" webstripperwas="images/rgs/b8.gif" width="11" height="13"></td></tr> <tr><td colspan="3"><div align="center"><a href="rgs/S0014501.aspx" webstripperwas="rgs/S0014501.html" title="Conde, a native of Tete (22 years old)" class="SubLink">S0014501</a></div></td></tr> </table> </td> <td valign="top"> <!-- 1 : 4 --><table width="125" border="0" cellspacing="0" cellpadding="0"> <tr><td><img src="images/rgs/b1.gif" webstripperwas="images/rgs/b1.gif" width="5" height="5"></td><td style="background:url(images/rgs/b2.gif) repeat-x top left" ><img src="images/rgs/b2.gif" webstripperwas="images/rgs/b2.gif" width="115" height="5"></td><td><img src="images/rgs/b3.gif" webstripperwas="images/rgs/b3.gif" width="11" height="5"></td></tr> <tr><td style="background:url(images/rgs/b4.gif) repeat-y top left" ><img src="images/rgs/b4.gif" webstripperwas="images/rgs/b4.gif" width="5" height="114"></td><td valign="top" bgcolor="#FFFFFF"><a href="rgs/S0014499.aspx" webstripperwas="rgs/S0014499.html" title="Working a Coal Seam near Tete, Lower Zambesi"><img src="images/rgs/thumbs/S0014499.jpg" webstripperwas="images/rgs/thumbs/S0014499.jpg" border="0" alt="Working a Coal Seam near Tete, Lower Zambesi"></a></td> <td style="background:url(images/rgs/b5.gif) repeat-y top left" ><img src="images/rgs/b5.gif" webstripperwas="images/rgs/b5.gif" width="11" height="114"></td></tr> <tr><td><img src="images/rgs/b6.gif" webstripperwas="images/rgs/b6.gif" width="5" height="13"></td><td style="background:url(images/rgs/b7.gif) repeat-x top left" ><img src="images/rgs/b7.gif" webstripperwas="images/rgs/b7.gif" width="115" height="13"></td><td><img src="images/rgs/b8.gif" webstripperwas="images/rgs/b8.gif" width="11" height="13"></td></tr> <tr><td colspan="3"><div align="center"><a href="rgs/S0014499.aspx" webstripperwas="rgs/S0014499.html" title="Working a Coal Seam near Tete, Lower Zambesi" class="SubLink">S0014499</a></div></td></tr> </table> </td> </tr> <tr> <td valign="top"> <!-- 2 : 0 --><table width="125" border="0" cellspacing="0" cellpadding="0"> <tr><td><img src="images/rgs/b1.gif" webstripperwas="images/rgs/b1.gif" width="5" height="5"></td><td style="background:url(images/rgs/b2.gif) repeat-x top left" ><img src="images/rgs/b2.gif" webstripperwas="images/rgs/b2.gif" width="115" height="5"></td><td><img src="images/rgs/b3.gif" webstripperwas="images/rgs/b3.gif" width="11" height="5"></td></tr> <tr><td style="background:url(images/rgs/b4.gif) repeat-y top left" ><img src="images/rgs/b4.gif" webstripperwas="images/rgs/b4.gif" width="5" height="114"></td><td valign="top" bgcolor="#FFFFFF"><a href="rgs/S0014212.aspx" webstripperwas="rgs/S0014212.html" title="Victoria or Mosioatunya –ÿ smoke sounding..."><img src="images/rgs/thumbs/S0014212.jpg" webstripperwas="images/rgs/thumbs/S0014212.jpg" border="0" alt="Victoria or Mosioatunya –ÿ smoke sounding..."></a></td> <td style="background:url(images/rgs/b5.gif) repeat-y top left" ><img src="images/rgs/b5.gif" webstripperwas="images/rgs/b5.gif" width="11" height="114"></td></tr> <tr><td><img src="images/rgs/b6.gif" webstripperwas="images/rgs/b6.gif" width="5" height="13"></td><td style="background:url(images/rgs/b7.gif) repeat-x top left" ><img src="images/rgs/b7.gif" webstripperwas="images/rgs/b7.gif" width="115" height="13"></td><td><img src="images/rgs/b8.gif" webstripperwas="images/rgs/b8.gif" width="11" height="13"></td></tr> <tr><td colspan="3"><div align="center"><a href="rgs/S0014212.aspx" webstripperwas="rgs/S0014212.html" title="Victoria or Mosioatunya –ÿ smoke sounding..." class="SubLink">S0014212</a></div></td></tr> </table> </td> <td valign="top"> <!-- 2 : 1 --><table width="125" border="0" cellspacing="0" cellpadding="0"> <tr><td><img src="images/rgs/b1.gif" webstripperwas="images/rgs/b1.gif" width="5" height="5"></td><td style="background:url(images/rgs/b2.gif) repeat-x top left" ><img src="images/rgs/b2.gif" webstripperwas="images/rgs/b2.gif" width="115" height="5"></td><td><img src="images/rgs/b3.gif" webstripperwas="images/rgs/b3.gif" width="11" height="5"></td></tr> <tr><td style="background:url(images/rgs/b4.gif) repeat-y top left" ><img src="images/rgs/b4.gif" webstripperwas="images/rgs/b4.gif" width="5" height="114"></td><td valign="top" bgcolor="#FFFFFF"><a href="rgs/S0012338.aspx" webstripperwas="rgs/S0012338.html" title="Herd of buffalo, opposite Garden Island,..."><img src="images/rgs/thumbs/S0012338.jpg" webstripperwas="images/rgs/thumbs/S0012338.jpg" border="0" alt="Herd of buffalo, opposite Garden Island,..."></a></td> <td style="background:url(images/rgs/b5.gif) repeat-y top left" ><img src="images/rgs/b5.gif" webstripperwas="images/rgs/b5.gif" width="11" height="114"></td></tr> <tr><td><img src="images/rgs/b6.gif" webstripperwas="images/rgs/b6.gif" width="5" height="13"></td><td style="background:url(images/rgs/b7.gif) repeat-x top left" ><img src="images/rgs/b7.gif" webstripperwas="images/rgs/b7.gif" width="115" height="13"></td><td><img src="images/rgs/b8.gif" webstripperwas="images/rgs/b8.gif" width="11" height="13"></td></tr> <tr><td colspan="3"><div align="center"><a href="rgs/S0012338.aspx" webstripperwas="rgs/S0012338.html" title="Herd of buffalo, opposite Garden Island,..." class="SubLink">S0012338</a></div></td></tr> </table> </td> <td valign="top"> <!-- 2 : 2 --><table width="125" border="0" cellspacing="0" cellpadding="0"> <tr><td><img src="images/rgs/b1.gif" webstripperwas="images/rgs/b1.gif" width="5" height="5"></td><td style="background:url(images/rgs/b2.gif) repeat-x top left" ><img src="images/rgs/b2.gif" webstripperwas="images/rgs/b2.gif" width="115" height="5"></td><td><img src="images/rgs/b3.gif" webstripperwas="images/rgs/b3.gif" width="11" height="5"></td></tr> <tr><td style="background:url(images/rgs/b4.gif) repeat-y top left" ><img src="images/rgs/b4.gif" webstripperwas="images/rgs/b4.gif" width="5" height="114"></td><td valign="top" bgcolor="#FFFFFF"><a href="rgs/S0014497.aspx" webstripperwas="rgs/S0014497.html" title="Victoria Falls, Zambezi River from the west end..."><img src="images/rgs/thumbs/S0014497.jpg" webstripperwas="images/rgs/thumbs/S0014497.jpg" border="0" alt="Victoria Falls, Zambezi River from the west end..."></a></td> <td style="background:url(images/rgs/b5.gif) repeat-y top left" ><img src="images/rgs/b5.gif" webstripperwas="images/rgs/b5.gif" width="11" height="114"></td></tr> <tr><td><img src="images/rgs/b6.gif" webstripperwas="images/rgs/b6.gif" width="5" height="13"></td><td style="background:url(images/rgs/b7.gif) repeat-x top left" ><img src="images/rgs/b7.gif" webstripperwas="images/rgs/b7.gif" width="115" height="13"></td><td><img src="images/rgs/b8.gif" webstripperwas="images/rgs/b8.gif" width="11" height="13"></td></tr> <tr><td colspan="3"><div align="center"><a href="rgs/S0014497.aspx" webstripperwas="rgs/S0014497.html" title="Victoria Falls, Zambezi River from the west end..." class="SubLink">S0014497</a></div></td></tr> </table> </td> <td valign="top"> <!-- 2 : 3 --><table width="125" border="0" cellspacing="0" cellpadding="0"> <tr><td><img src="images/rgs/b1.gif" webstripperwas="images/rgs/b1.gif" width="5" height="5"></td><td style="background:url(images/rgs/b2.gif) repeat-x top left" ><img src="images/rgs/b2.gif" webstripperwas="images/rgs/b2.gif" width="115" height="5"></td><td><img src="images/rgs/b3.gif" webstripperwas="images/rgs/b3.gif" width="11" height="5"></td></tr> <tr><td style="background:url(images/rgs/b4.gif) repeat-y top left" ><img src="images/rgs/b4.gif" webstripperwas="images/rgs/b4.gif" width="5" height="114"></td><td valign="top" bgcolor="#FFFFFF"><a href="rgs/S0014496.aspx" webstripperwas="rgs/S0014496.html" title="The Great Weatern Fall"><img src="images/rgs/thumbs/S0014496.jpg" webstripperwas="images/rgs/thumbs/S0014496.jpg" border="0" alt="The Great Weatern Fall"></a></td> <td style="background:url(images/rgs/b5.gif) repeat-y top left" ><img src="images/rgs/b5.gif" webstripperwas="images/rgs/b5.gif" width="11" height="114"></td></tr> <tr><td><img src="images/rgs/b6.gif" webstripperwas="images/rgs/b6.gif" width="5" height="13"></td><td style="background:url(images/rgs/b7.gif) repeat-x top left" ><img src="images/rgs/b7.gif" webstripperwas="images/rgs/b7.gif" width="115" height="13"></td><td><img src="images/rgs/b8.gif" webstripperwas="images/rgs/b8.gif" width="11" height="13"></td></tr> <tr><td colspan="3"><div align="center"><a href="rgs/S0014496.aspx" webstripperwas="rgs/S0014496.html" title="The Great Weatern Fall" class="SubLink">S0014496</a></div></td></tr> </table> </td> <td valign="top"> <!-- 2 : 4 --><table width="125" border="0" cellspacing="0" cellpadding="0"> <tr><td><img src="images/rgs/b1.gif" webstripperwas="images/rgs/b1.gif" width="5" height="5"></td><td style="background:url(images/rgs/b2.gif) repeat-x top left" ><img src="images/rgs/b2.gif" webstripperwas="images/rgs/b2.gif" width="115" height="5"></td><td><img src="images/rgs/b3.gif" webstripperwas="images/rgs/b3.gif" width="11" height="5"></td></tr> <tr><td style="background:url(images/rgs/b4.gif) repeat-y top left" ><img src="images/rgs/b4.gif" webstripperwas="images/rgs/b4.gif" width="5" height="114"></td><td valign="top" bgcolor="#FFFFFF"><a href="rgs/S0014495.aspx" webstripperwas="rgs/S0014495.html" title="The Profile Cliff, and abrupt turn in the Lower..."><img src="images/rgs/thumbs/S0014495.jpg" webstripperwas="images/rgs/thumbs/S0014495.jpg" border="0" alt="The Profile Cliff, and abrupt turn in the Lower..."></a></td> <td style="background:url(images/rgs/b5.gif) repeat-y top left" ><img src="images/rgs/b5.gif" webstripperwas="images/rgs/b5.gif" width="11" height="114"></td></tr> <tr><td><img src="images/rgs/b6.gif" webstripperwas="images/rgs/b6.gif" width="5" height="13"></td><td style="background:url(images/rgs/b7.gif) repeat-x top left" ><img src="images/rgs/b7.gif" webstripperwas="images/rgs/b7.gif" width="115" height="13"></td><td><img src="images/rgs/b8.gif" webstripperwas="images/rgs/b8.gif" width="11" height="13"></td></tr> <tr><td colspan="3"><div align="center"><a href="rgs/S0014495.aspx" webstripperwas="rgs/S0014495.html" title="The Profile Cliff, and abrupt turn in the Lower..." class="SubLink">S0014495</a></div></td></tr> </table> </td> </tr> <tr> <td valign="top"> <!-- 3 : 0 --><table width="125" border="0" cellspacing="0" cellpadding="0"> <tr><td><img src="images/rgs/b1.gif" webstripperwas="images/rgs/b1.gif" width="5" height="5"></td><td style="background:url(images/rgs/b2.gif) repeat-x top left" ><img src="images/rgs/b2.gif" webstripperwas="images/rgs/b2.gif" width="115" height="5"></td><td><img src="images/rgs/b3.gif" webstripperwas="images/rgs/b3.gif" width="11" height="5"></td></tr> <tr><td style="background:url(images/rgs/b4.gif) repeat-y top left" ><img src="images/rgs/b4.gif" webstripperwas="images/rgs/b4.gif" width="5" height="114"></td><td valign="top" bgcolor="#FFFFFF"><a href="rgs/S0014494.aspx" webstripperwas="rgs/S0014494.html" title="The Bluff and entrance of the Harbour, Port..."><img src="images/rgs/thumbs/S0014494.jpg" webstripperwas="images/rgs/thumbs/S0014494.jpg" border="0" alt="The Bluff and entrance of the Harbour, Port..."></a></td> <td style="background:url(images/rgs/b5.gif) repeat-y top left" ><img src="images/rgs/b5.gif" webstripperwas="images/rgs/b5.gif" width="11" height="114"></td></tr> <tr><td><img src="images/rgs/b6.gif" webstripperwas="images/rgs/b6.gif" width="5" height="13"></td><td style="background:url(images/rgs/b7.gif) repeat-x top left" ><img src="images/rgs/b7.gif" webstripperwas="images/rgs/b7.gif" width="115" height="13"></td><td><img src="images/rgs/b8.gif" webstripperwas="images/rgs/b8.gif" width="11" height="13"></td></tr> <tr><td colspan="3"><div align="center"><a href="rgs/S0014494.aspx" webstripperwas="rgs/S0014494.html" title="The Bluff and entrance of the Harbour, Port..." class="SubLink">S0014494</a></div></td></tr> </table> </td> <td valign="top"> <!-- 3 : 1 --><table width="125" border="0" cellspacing="0" cellpadding="0"> <tr><td><img src="images/rgs/b1.gif" webstripperwas="images/rgs/b1.gif" width="5" height="5"></td><td style="background:url(images/rgs/b2.gif) repeat-x top left" ><img src="images/rgs/b2.gif" webstripperwas="images/rgs/b2.gif" width="115" height="5"></td><td><img src="images/rgs/b3.gif" webstripperwas="images/rgs/b3.gif" width="11" height="5"></td></tr> <tr><td style="background:url(images/rgs/b4.gif) repeat-y top left" ><img src="images/rgs/b4.gif" webstripperwas="images/rgs/b4.gif" width="5" height="114"></td><td valign="top" bgcolor="#FFFFFF"><a href="rgs/S0014503.aspx" webstripperwas="rgs/S0014503.html" title="Town of Tete from the North Shore of the..."><img src="images/rgs/thumbs/S0014503.jpg" webstripperwas="images/rgs/thumbs/S0014503.jpg" border="0" alt="Town of Tete from the North Shore of the..."></a></td> <td style="background:url(images/rgs/b5.gif) repeat-y top left" ><img src="images/rgs/b5.gif" webstripperwas="images/rgs/b5.gif" width="11" height="114"></td></tr> <tr><td><img src="images/rgs/b6.gif" webstripperwas="images/rgs/b6.gif" width="5" height="13"></td><td style="background:url(images/rgs/b7.gif) repeat-x top left" ><img src="images/rgs/b7.gif" webstripperwas="images/rgs/b7.gif" width="115" height="13"></td><td><img src="images/rgs/b8.gif" webstripperwas="images/rgs/b8.gif" width="11" height="13"></td></tr> <tr><td colspan="3"><div align="center"><a href="rgs/S0014503.aspx" webstripperwas="rgs/S0014503.html" title="Town of Tete from the North Shore of the..." class="SubLink">S0014503</a></div></td></tr> </table> </td> <td valign="top"> <!-- 3 : 2 --><table width="125" border="0" cellspacing="0" cellpadding="0"> <tr><td><img src="images/rgs/b1.gif" webstripperwas="images/rgs/b1.gif" width="5" height="5"></td><td style="background:url(images/rgs/b2.gif) repeat-x top left" ><img src="images/rgs/b2.gif" webstripperwas="images/rgs/b2.gif" width="115" height="5"></td><td><img src="images/rgs/b3.gif" webstripperwas="images/rgs/b3.gif" width="11" height="5"></td></tr> <tr><td style="background:url(images/rgs/b4.gif) repeat-y top left" ><img src="images/rgs/b4.gif" webstripperwas="images/rgs/b4.gif" width="5" height="114"></td><td valign="top" bgcolor="#FFFFFF"><a href="rgs/S0014502.aspx" webstripperwas="rgs/S0014502.html" title="Part of Tete looking up the Zambezi, from the..."><img src="images/rgs/thumbs/S0014502.jpg" webstripperwas="images/rgs/thumbs/S0014502.jpg" border="0" alt="Part of Tete looking up the Zambezi, from the..."></a></td> <td style="background:url(images/rgs/b5.gif) repeat-y top left" ><img src="images/rgs/b5.gif" webstripperwas="images/rgs/b5.gif" width="11" height="114"></td></tr> <tr><td><img src="images/rgs/b6.gif" webstripperwas="images/rgs/b6.gif" width="5" height="13"></td><td style="background:url(images/rgs/b7.gif) repeat-x top left" ><img src="images/rgs/b7.gif" webstripperwas="images/rgs/b7.gif" width="115" height="13"></td><td><img src="images/rgs/b8.gif" webstripperwas="images/rgs/b8.gif" width="11" height="13"></td></tr> <tr><td colspan="3"><div align="center"><a href="rgs/S0014502.aspx" webstripperwas="rgs/S0014502.html" title="Part of Tete looking up the Zambezi, from the..." class="SubLink">S0014502</a></div></td></tr> </table> </td> <td valign="top"> <!-- 3 : 3 --><table width="125" border="0" cellspacing="0" cellpadding="0"> <tr><td><img src="images/rgs/b1.gif" webstripperwas="images/rgs/b1.gif" width="5" height="5"></td><td style="background:url(images/rgs/b2.gif) repeat-x top left" ><img src="images/rgs/b2.gif" webstripperwas="images/rgs/b2.gif" width="115" height="5"></td><td><img src="images/rgs/b3.gif" webstripperwas="images/rgs/b3.gif" width="11" height="5"></td></tr> <tr><td style="background:url(images/rgs/b4.gif) repeat-y top left" ><img src="images/rgs/b4.gif" webstripperwas="images/rgs/b4.gif" width="5" height="114"></td><td valign="top" bgcolor="#FFFFFF"><a href="rgs/S0014507.aspx" webstripperwas="rgs/S0014507.html" title="Herd of Hippopotami near the mouth of the Luabo..."><img src="images/rgs/thumbs/S0014507.jpg" webstripperwas="images/rgs/thumbs/S0014507.jpg" border="0" alt="Herd of Hippopotami near the mouth of the Luabo..."></a></td> <td style="background:url(images/rgs/b5.gif) repeat-y top left" ><img src="images/rgs/b5.gif" webstripperwas="images/rgs/b5.gif" width="11" height="114"></td></tr> <tr><td><img src="images/rgs/b6.gif" webstripperwas="images/rgs/b6.gif" width="5" height="13"></td><td style="background:url(images/rgs/b7.gif) repeat-x top left" ><img src="images/rgs/b7.gif" webstripperwas="images/rgs/b7.gif" width="115" height="13"></td><td><img src="images/rgs/b8.gif" webstripperwas="images/rgs/b8.gif" width="11" height="13"></td></tr> <tr><td colspan="3"><div align="center"><a href="rgs/S0014507.aspx" webstripperwas="rgs/S0014507.html" title="Herd of Hippopotami near the mouth of the Luabo..." class="SubLink">S0014507</a></div></td></tr> </table> </td><td><table width="125" border="0" cellspacing="0" cellpadding="0"> <tr><td><img src="images/rgs/b1.gif" webstripperwas="images/rgs/b1.gif" width="5" height="5"></td><td style="background:url(images/rgs/b2.gif) repeat-x top left" ><img src="images/rgs/b2.gif" webstripperwas="images/rgs/b2.gif" width="115" height="5"></td><td><img src="images/rgs/b3.gif" webstripperwas="images/rgs/b3.gif" width="11" height="5"></td></tr> <tr><td style="background:url(images/rgs/b4.gif) repeat-y top left" ><img src="images/rgs/b4.gif" webstripperwas="images/rgs/b4.gif" width="5" height="114"></td><td valign="top" bgcolor="#FFFFFF"><a href="rgs/S0013503.aspx" webstripperwas="rgs/S0013503.html" title="Description Pending"><img src="images/rgs/thumbs/S0013503.jpg" webstripperwas="images/rgs/thumbs/S0013503.jpg" border="0" alt="Description Pending"></a></td> <td style="background:url(images/rgs/b5.gif) repeat-y top left" ><img src="images/rgs/b5.gif" webstripperwas="images/rgs/b5.gif" width="11" height="114"></td></tr> <tr><td><img src="images/rgs/b6.gif" webstripperwas="images/rgs/b6.gif" width="5" height="13"></td><td style="background:url(images/rgs/b7.gif) repeat-x top left" ><img src="images/rgs/b7.gif" webstripperwas="images/rgs/b7.gif" width="115" height="13"></td><td><img src="images/rgs/b8.gif" webstripperwas="images/rgs/b8.gif" width="11" height="13"></td></tr> <tr><td colspan="3"><div align="center"><a href="rgs/S0013503.aspx" webstripperwas="rgs/S0013503.html" title="Description Pending" class="SubLink">S0013503</a></div></td></tr> </table></td> </tr> </table> <a href="rgs_livingstone.aspx" webstripperwas="rgs_livingstone.html" ><br /> <img src="images/button_rgs2.gif" webstripperwas="images/button_rgs2.gif" alt="Livingstone &amp; Stanley Collection" width="142" height="91" hspace="10" border="0" /></a><a href="rgs_maps.html" webstripperwas="rgs_maps.html" ><img src="images/button_rgs1.gif" webstripperwas="images/button_rgs1.gif" alt="Historic Maps" width="112" height="91" hspace="10" border="0" /></a><a href="rgs_etchings.html" webstripperwas="rgs_etchings.html" ><img src="images/button_rgs4.gif" webstripperwas="images/button_rgs4.gif" alt="Etchings, Illustrations &amp; Documents" width="169" height="91" hspace="10" border="0" /></a><a href="rgs_baines.html" webstripperwas="rgs_baines.html" ><img src="images/button_rgs3.gif" webstripperwas="images/button_rgs3.gif" alt="Baines Collection" width="132" height="91" hspace="10" border="0" /></a><a href="rgs_photography.html" webstripperwas="rgs_photography.html" ><img src="images/button_rgs5.gif" webstripperwas="images/button_rgs5.gif" alt="Early Travel Photography" width="102" height="91" hspace="10" border="0" /></a><br /> <br /> </div></td> </tr> </table> <div align="center">" <br /> <a href="index.html" class="BottomLink">Home</a> | <a href="about_us.html" webstripperwas="about_us.html" class="BottomLink"> About Us</a> | <a href="luggage.html" webstripperwas="luggage.html" class="BottomLink"> Luggage</a> | <a href="seat_covers.html" webstripperwas="seat_covers.html" class="BottomLink"> Seat Covers</a> | <a href="colonial_relics.html" webstripperwas="colonial_relics.html" class="BottomLink"> Colonial Relics</a> | <a href="rgs_collection.html" webstripperwas="rgs_collection.html" class="BottomLink"> Exploration Collection</a> | <a href="events.aspx" webstripperwas="events.html" class="BottomLink"> Marketing &amp; Events</a> | <a href="retailers.aspx" webstripperwas="retailers.html" class="BottomLink"> Retailers</a> | <a href="contact.aspx" webstripperwas="contact_us.html" class="BottomLink"> Contact Us</a><br />" <br /> ©1998-2008 Melvill &amp; Moon (Pty) Ltd. All rights reserved.</div></td> </tr> </table> </body> </html>