ÿþ<!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 : Etchings, Illustrations &amp; Documents</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"> <!-- 3 : 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/S0014542.aspx" webstripperwas="rgs/S0014542.aspx" title="First Dutch settlement at the Cape of Good Hope"><img src="images/rgs/thumbs/S0014542.jpg" webstripperwas="images/rgs/thumbs/S0014542.jpg" border="0" alt="First Dutch settlement at the Cape of Good Hope"></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/S0014542.aspx" webstripperwas="rgs/S0014542.aspx" title="First Dutch settlement at the Cape of Good Hope" class="SubLink">S0014542</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/S0015802.aspx" webstripperwas="rgs/S0015802.html" title="The main street in the bazaar at Caubul in the..."><img src="images/rgs/thumbs/S0015802.jpg" webstripperwas="images/rgs/thumbs/S0015802.jpg" border="0" alt="The main street in the bazaar at Caubul in 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/S0015802.aspx" webstripperwas="rgs/S0015802.aspx" title="The main street in the bazaar at Caubul in the..." class="SubLink">S0015802</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/S0013722.aspx" webstripperwas="rgs/S0013722.aspx" title="Mr. Frederick Courtney Selous"><img src="images/rgs/thumbs/S0013722.jpg" webstripperwas="images/rgs/thumbs/S0013722.jpg" border="0" alt="Mr. Frederick Courtney Selous"></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/S0013722.aspx" webstripperwas="rgs/S0013722.aspx" title="Mr. Frederick Courtney Selous" class="SubLink">S0013722</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/S0000068.aspx" webstripperwas="rgs/S0000068.aspx" title="Sir Henry Morton Stanley (1840 –ÿ 1904) –ÿ..."> <img src="images/rgs/thumbs/S0000068.jpg" webstripperwas="images/rgs/thumbs/S0000068.jpg" border="0" alt="Sir Henry Morton Stanley (1840 –ÿ 1904) –ÿ..." dir="ltr"></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/S0000068.aspx" webstripperwas="rgs/S0000068.aspx" title="Sir Henry Morton Stanley (1840 –ÿ 1904) –ÿ..." class="SubLink">S0000068</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/S0016393.aspx" webstripperwas="rgs/S0016393.aspx" title="Reviewing the expedition"><img src="images/rgs/thumbs/S0016393.jpg" webstripperwas="images/rgs/thumbs/S0016393.jpg" border="0" alt="Reviewing the expedition"></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/S0016393.aspx" webstripperwas="rgs/S0016393.aspx" title="Reviewing the expedition" class="SubLink">S0016393</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/S0004014.aspx" webstripperwas="rgs/S0004014.aspx" title="Scenes in Africa for the amusement and..."><img src="images/rgs/thumbs/S0004014.jpg" webstripperwas="images/rgs/thumbs/S0004014.jpg" border="0" alt="Scenes in Africa for the amusement 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/S0004014.aspx" webstripperwas="rgs/S0004014.aspx" title="Scenes in Africa for the amusement and..." class="SubLink">S0004014</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/S0005722.aspx" webstripperwas="rgs/S0005722.aspx" title="Moobarik Bombay, who accompanied Captain Speke..."><img src="images/rgs/thumbs/S0005722.jpg" webstripperwas="images/rgs/thumbs/S0005722.jpg" border="0" alt="Moobarik Bombay, who accompanied Captain Speke..."></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/S0005722.aspx" webstripperwas="rgs/S0005722.aspx" title="Moobarik Bombay, who accompanied Captain Speke..." class="SubLink">S0005722</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/S0004023.aspx" webstripperwas="rgs/S0004023.aspx" title="Letter from Cameron to the RGS informing the..."><img src="images/rgs/thumbs/S0004023.jpg" webstripperwas="images/rgs/thumbs/S0004023.jpg" border="0" alt="Letter from Cameron to the RGS informing 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/S0004023.aspx" webstripperwas="rgs/S0004023.aspx" title="Letter from Cameron to the RGS informing the..." class="SubLink">S0004023</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/S0013208.aspx" webstripperwas="rgs/S0013208.aspx" title="Italian bugle carried behind Emin Pasha by his..."><img src="images/rgs/thumbs/S0013208.jpg" webstripperwas="images/rgs/thumbs/S0013208.jpg" border="0" alt="Italian bugle carried behind Emin Pasha by his..."></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/S0013208.aspx" webstripperwas="rgs/S0013208.aspx" title="Italian bugle carried behind Emin Pasha by his..." class="SubLink">S0013208</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/S0004027.aspx" webstripperwas="rgs/S0004027.aspx" title="Letter to the Soceity from David Livingstone"><img src="images/rgs/thumbs/S0004027.jpg" webstripperwas="images/rgs/thumbs/S0004027.jpg" border="0" alt="Letter to the Soceity from David Livingstone"></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/S0004027.aspx" webstripperwas="rgs/S0004027.aspx" title="Letter to the Soceity from David Livingstone" class="SubLink">S0004027</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/S0014430.aspx" webstripperwas="rgs/S0014430.aspx" title="Livingstone's notes on seeing the Zambezi river"><img src="images/rgs/thumbs/S0014430.jpg" webstripperwas="images/rgs/thumbs/S0014430.jpg" border="0" alt="Livingstone's notes on seeing the Zambezi river"></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/S0014430.aspx" webstripperwas="rgs/S0014430.aspx" title="Livingstone's notes on seeing the Zambezi river" class="SubLink">S0014430</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/S0014140.aspx" webstripperwas="rgs/S0014140.aspx" title="White Rhinoceros and African Rhinoceros"><img src="images/rgs/thumbs/S0014140.jpg" webstripperwas="images/rgs/thumbs/S0014140.jpg" border="0" alt="White Rhinoceros and African Rhinoceros"></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/S0014140.aspx" webstripperwas="rgs/S0014140.aspx" title="White Rhinoceros and African Rhinoceros" class="SubLink">S0014140</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/S0014586.aspx" webstripperwas="rgs/S0014586.aspx" title="British Central African: Light in Darkness"><img src="images/rgs/thumbs/S0014586.jpg" webstripperwas="images/rgs/thumbs/S0014586.jpg" border="0" alt="British Central African: Light in Darkness"></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/S0014586.aspx" webstripperwas="rgs/S0014586.aspx" title="British Central African: Light in Darkness" class="SubLink">S0014586</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/S0010444.aspx" webstripperwas="rgs/S0010444.aspx" title="Frontispiece from “ÿMissionary travels and..."><img src="images/rgs/thumbs/S0010444.jpg" webstripperwas="images/rgs/thumbs/S0010444.jpg" border="0" alt="Frontispiece from “ÿMissionary travels 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/S0010444.aspx" webstripperwas="rgs/S0010444.aspx" title="Frontispiece from “ÿMissionary travels and..." class="SubLink">S0010444</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/S0010445.aspx" webstripperwas="rgs/S0010445.aspx" title="Frontispiece from “ÿNarrative of an expedition..."><img src="images/rgs/thumbs/S0010445.jpg" webstripperwas="images/rgs/thumbs/S0010445.jpg" border="0" alt="Frontispiece from “ÿNarrative of an expedition..."></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/S0010445.aspx" webstripperwas="rgs/S0010445.aspx" title="Frontispiece from “ÿNarrative of an expedition..." class="SubLink">S0010445</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/S00159326.aspx" webstripperwas="rgs/S00159326.aspx" title="Letter from Samuel Baker"><img src="images/rgs/thumbs/S00159326.jpg" webstripperwas="images/rgs/thumbs/S00159326.jpg" border="0" alt="Letter from Samuel Baker"></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/S00159326.aspx" webstripperwas="rgs/S00159326.aspx" title="Letter from Samuel Baker" class="SubLink">S00159326</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/S0013413.aspx" webstripperwas="rgs/S0013413.aspx" title="Title page of 'Travels in Western Africa in..."><img src="images/rgs/thumbs/S0013413.jpg" webstripperwas="images/rgs/thumbs/S0013413.jpg" border="0" alt="Title page of 'Travels in Western Africa 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/S0013413.aspx" webstripperwas="rgs/S0013413.aspx" title="Title page of 'Travels in Western Africa in..." class="SubLink">S0013413</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/S0010447.aspx" webstripperwas="rgs/S0010447.html" title="The missionary's escape from the lion"><img src="images/rgs/thumbs/S0010447.jpg" webstripperwas="images/rgs/thumbs/S0010447.jpg" border="0" alt="The missionary's escape from the lion"></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/S0010447.aspx" webstripperwas="rgs/S0010447.aspx" title="The missionary's escape from the lion" class="SubLink">S0010447</a></div></td></tr> </table> </td> </tr> </table> <a href="rgs_livingstone.html" 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>