<!DOCTYPE html PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN' 'http://www.w3.org/TR/html4/loose.dtd'>
<HTML>

<HEAD>
   <TITLE>Brian Reeve/Sajal Philatelics - Home</TITLE>
<META NAME = 'description' CONTENT = 'Brian Reeve/Sajal Philatelics hold auctions of stamps, first day covers, phonecards, autographs and other collectables at our premises in London'><META NAME = 'keywords' CONTENT = 'London,auction,auctions,philatelic,philately,stamp,stamps,first day cover,first day covers,FDC,FDCs,phonecard,phonecards,autograph,autographs,collectable,collectables,collectible,collectibles'><META NAME = 'robots' CONTENT = 'INDEX,FOLLOW'><LINK REL = 'shortcut icon' HREF = 'favicon.ico'><LINK REL = 'icon' HREF = 'favicon.ico'><LINK REL = 'stylesheet' TYPE = 'text/css' HREF = 'Brian Reeve.css'>
   <STYLE TYPE = "text/css">
   <!--
   DIV#main			{margin-top:0.25em;
				 text-align:center;}
   IMG.logo			{margin-top:0.75em;}
   OL				{width:50%; margin-left:auto; margin-right:auto; list-style-type:none;
   				 text-align:left;}
   LI.show			{clear:left; display:list-item; height:125px;}
   LI.hide			{clear:left; display:none; height:125px;}
   LI IMG			{float:left; max-height:125px; max-width:125px; margin-right:2em;}
   LI DIV			{float:left; width:60%;}
   LI.index			{clear:left;
				 text-align:center;}
   LI.index A.normal	{background-color:LightSteelBlue; margin-right:0.1em;
				 text-decoration:none;}
   LI.index A.bright	{background-color:LightSkyBlue; margin-right:0.1em;
				 text-decoration:none;}
   LI.index SPAN		{margin-left:0.5em;}
   P				{margin-top:0.6em;}
   P.lot_p			{margin-top:0;}
   P.next_p			{clear:left;}
   P.dtl_p			{width:40%; margin-top:0; margin-left:60%;
				 text-align:left;}
   P.live_p			{margin-top:0.25em;}
   HR				{width:55%; height:3px; margin-top:1.25em; margin-bottom:0;}

   -->
   </STYLE>

<SCRIPT LANGUAGE = "JavaScript" TYPE = "text/javascript" SRC = "Scripts/Literals.js">
</SCRIPT>

<SCRIPT LANGUAGE = "JavaScript" TYPE = "text/javascript" SRC = "Scripts/String Extras.js">
</SCRIPT>

<SCRIPT LANGUAGE = "JavaScript" TYPE = "text/javascript" SRC = "Scripts/Number Extras.js">
</SCRIPT>

<SCRIPT LANGUAGE = "JavaScript" TYPE = "text/javascript" SRC = "Scripts/Date Extras.js">
</SCRIPT>

<SCRIPT LANGUAGE = "JavaScript" TYPE = "text/javascript" SRC = "Scripts/Message Handler.js">
</SCRIPT>

<SCRIPT LANGUAGE = "JavaScript" TYPE = "text/javascript" SRC = "Scripts/Error Handler.js">
</SCRIPT>

<SCRIPT LANGUAGE = "JavaScript" TYPE = "text/javascript" SRC = "Scripts/Grid Tools.js">
</SCRIPT>

<SCRIPT LANGUAGE = "JavaScript" TYPE = "text/javascript" SRC = "Scripts/Form Tools.js">
</SCRIPT>

<SCRIPT LANGUAGE = "JavaScript" TYPE = "text/javascript" SRC = "Scripts/DHTML Tools.js">
</SCRIPT>


   <SCRIPT LANGUAGE = "JavaScript" TYPE = "text/javascript">
   <!--
   var this_clnt_err		= null,
       this_perfs			= null,
       this_menu			= null,
       rot_list			= new Array ();

   function setup_idx ()
   {
      this_clnt_err		= new client_error ();

      this_perfs			= new perfs ();
      this_menu			= new menu ();

      if (document.getElementsByTagName)
      {
         var ol_list		= document.getElementsByTagName ("OL"),
             i;

         for (i = 0; i < ol_list.length; i++)
         {
            rot_list [i]	= new lot_rotate (ol_list [i], i);
         }

      }

      if (this_clnt_err.check_reports ())
      {
         this_clnt_err.send_reports ();
      }

   }

   function lot_rotate (list_node, id)
   {
      var ROTATE_INTERVAL_MS	= 10000;
var this_obj = this;
this.id = String (id);
      item_list			= new Array ();
      current_item		= 0;
      timer_id			= null;

      function item_info ()
      {
         this.item_node		= null;
         this.index_node	= null;

      }

      function make_item_info (item_node, index_node)
      {
// alert ("lot_rotate.make_item_info entry");
         var new_info		= new item_info ();

         new_info.item_node	= item_node;
         new_info.index_node	= index_node;

         declare_evh (index_node, "mouseover", mouse_evh);

         item_list.push (new_info);

      }

      function timer_evh ()
      {
// alert ("lot_rotate.timer_evh entry this_obj.id: " + String (this_obj.id));
         current_item		= (++current_item < item_list.length)
					  ? current_item
					  : 0
         set_items (current_item);

      }

      function set_items (item_nr)
      {
// alert ("lot_rotate.set_items entry item_nr: " + String (item_nr));
         var current_info	= item_list [item_nr],
             i;

         for (i = 0; i < this.item_list.length; i++)
         {
            var item_info		= item_list [i];

            item_info.item_node.className
						= "hide";
            item_info.index_node.className
						= "normal";
         }

         current_info.item_node.className
					= "show";
         current_info.index_node.className
					= "bright";
      }

      function mouse_evh (event)
      {
// alert ("lot_rotate.mouse_evh entry this_obj.id: " + String (this_obj.id));
         var dom_node		= get_evh_target (event),
             index_nr;

         while (dom_node.tagName != "A")
         {
            dom_node			= dom_node.parent_node;
         }

         index_nr			= parseInt ((dom_node.textContent)
					            ? dom_node.textContent
					            : dom_node.innerText);
// alert ("lot_rotate.mouse_evh index_nr: " + String (index_nr));
         if (!isNaN (index_nr)		&&
             index_nr > 0			&&
             index_nr <= item_list.length)
         {
            clearInterval (timer_id);

            current_item		= index_nr - 1;
            set_items (current_item);

            timer_id			= setInterval (timer_evh, ROTATE_INTERVAL_MS);

         }

      }

// alert ("lot_rotate entry this.id: " + this.id);
      if (list_node != null			&&
          list_node.tagName == "OL"		&&
          list_node.getElementsByTagName)
      {
         var li_list		= list_node.getElementsByTagName ("LI"),
             link_list		= li_list [li_list.length - 1].getElementsByTagName ("A"),
             i;

         for (i = 0; i < Math.min (li_list.length - 1, link_list.length); i++)
         {
            make_item_info (li_list [i], link_list [i]);
         }

         set_items (current_item);

         timer_id			= setInterval (timer_evh, ROTATE_INTERVAL_MS);

      }

   }

   // -->
   </SCRIPT>

</HEAD>

<BODY ONLOAD = "setup_idx ();">
<NOSCRIPT><P>Your browser does not support scripts.Error reporting may not work as you expect.</P></NOSCRIPT><DIV ID = 'bnr_l'></DIV><DIV ID = 'bnr_r'></DIV><IMG ID = 'bnr' SRC = 'Images/Bnr Brian Reeve.gif' ALT = 'Brian Reeve Logo'><DIV ID = 'perf_t'></DIV><DIV ID = 'perf_l'></DIV><P ID = 'mnu_p' CLASS = 'mnu_p'><IMG ID = 'mnu_here' SRC = 'Images/Btn Home.gif' ALT = 'Home Button'><BR CLASS = 'left'><A HREF = 'About.asp'><IMG CLASS = 'mnu' SRC = 'Images/Btn About.gif' ALT = 'About Button'></A><BR CLASS = 'left'><A HREF = 'Contact.asp'><IMG CLASS = 'mnu' SRC = 'Images/Btn Contact.gif' ALT = 'Contact Button'></A><BR CLASS = 'left'><A HREF = 'Find.asp'><IMG CLASS = 'mnu' SRC = 'Images/Btn Find.gif' ALT = 'Find Button'><BR CLASS = 'left'></A><A HREF = 'Auctions.asp'><IMG CLASS = 'mnu' SRC = 'Images/Btn Auctions.gif' ALT = 'Auctions Button'></A><BR CLASS = 'left'><A HREF = 'Bids.asp'><IMG CLASS = 'mnu' SRC = 'Images/Btn Bids.gif' ALT = 'Bids Button'></A><BR CLASS = 'left'><IMG CLASS = 'mnu_hdr' SRC = 'Images/Mnu BR Stamps.gif' ALT = 'Stamp Menu Heading'><BR CLASS = 'left'><IMG SRC = 'Images/Btn BR Bullet.gif' ALT = 'Stamp Menu Bullet'><A HREF = 'Searches.asp?type=Stamps'><IMG CLASS = 'mnu' SRC = 'Images/Btn BR Search.gif' ALT = 'Stamp Search Button'></A><BR CLASS = 'left'><IMG SRC = 'Images/Btn BR Bullet.gif' ALT = 'Stamp Menu Bullet'><A HREF = 'Galleries.asp?type=Stamps'><IMG CLASS = 'mnu' SRC = 'Images/Btn BR Galleries.gif' ALT = 'Stamp Galleries Button'></A><BR CLASS = 'left'><IMG SRC = 'Images/Btn BR Bullet.gif' ALT = 'Stamp Menu Bullet'><A HREF = 'Catalogues.asp?type=Stamps'><IMG CLASS = 'mnu' SRC = 'Images/Btn BR Catalogues.gif' ALT = 'Stamp Catalogues Button'></A><BR CLASS = 'left'><IMG SRC = 'Images/Btn BR Bullet.gif' ALT = 'Stamp Menu Bullet'><A HREF = 'Prices.asp?type=Stamps'><IMG CLASS = 'mnu' SRC = 'Images/Btn BR Realisations.gif' ALT = 'Stamp Prices Realised Lists Button'></A><BR CLASS = 'left'><IMG SRC = 'Images/Btn BR Bullet.gif' ALT = 'Stamp Menu Bullet'><A HREF = 'Unsolds.asp?type=Stamps'><IMG CLASS = 'mnu' SRC = 'Images/Btn BR Unsolds.gif' ALT = 'Stamp Unsold Lists Button'></A><BR CLASS = 'left'><IMG CLASS = 'mnu_hdr' SRC = 'Images/Mnu Sajal Covers.gif' ALT = 'First Day Covers Menu Heading'><BR CLASS = 'left'><IMG SRC = 'Images/Btn Sajal Bullet.gif' ALT = 'First Day Covers Menu Bullet'><A HREF = 'Searches.asp?type=Covers'><IMG CLASS = 'mnu' SRC = 'Images/Btn Sajal Search.gif' ALT = 'First Day Covers Search Button'></A><BR CLASS = 'left'><IMG SRC = 'Images/Btn Sajal Bullet.gif' ALT = 'First Day Covers Menu Bullet'><A HREF = 'Galleries.asp?type=Covers'><IMG CLASS = 'mnu' SRC = 'Images/Btn Sajal Galleries.gif' ALT = 'First Day Covers Galleries Button'></A><BR CLASS = 'left'><IMG SRC = 'Images/Btn Sajal Bullet.gif' ALT = 'First Day Covers Menu Bullet'><A HREF = 'Catalogues.asp?type=Covers'><IMG CLASS = 'mnu' SRC = 'Images/Btn Sajal Catalogues.gif' ALT = 'First Day Covers Catalogues Button'></A><BR CLASS = 'left'><IMG SRC = 'Images/Btn Sajal Bullet.gif' ALT = 'First Day Covers Menu Bullet'><A HREF = 'Prices.asp?type=Covers'><IMG CLASS = 'mnu' SRC = 'Images/Btn Sajal Realisations.gif' ALT = 'First Day Covers Prices Realised Lists Button'></A><BR CLASS = 'left'><IMG CLASS = 'mnu_hdr' SRC = 'Images/Mnu BR Phonecards.gif' ALT = 'Phonecard Menu Heading'><BR CLASS = 'left'><IMG SRC = 'Images/Btn BR Bullet.gif' ALT = 'Phonecard Menu Bullet'><A HREF = 'Searches.asp?type=Phonecards'><IMG CLASS = 'mnu' SRC = 'Images/Btn BR Search.gif' ALT = 'Phonecard Search Button'></A><BR CLASS = 'left'><IMG SRC = 'Images/Btn BR Bullet.gif' ALT = 'Phonecard Menu Bullet'><A HREF = 'Galleries.asp?type=Phonecards'><IMG CLASS = 'mnu' SRC = 'Images/Btn BR Galleries.gif' ALT = 'Phonecard Galleries Button'></A><BR CLASS = 'left'><IMG SRC = 'Images/Btn BR Bullet.gif' ALT = 'Phonecard Menu Bullet'><A HREF = 'Catalogues.asp?type=Phonecards'><IMG CLASS = 'mnu' SRC = 'Images/Btn BR Catalogues.gif' ALT = 'Phonecard Catalogues Button'></A><BR CLASS = 'left'><IMG SRC = 'Images/Btn BR Bullet.gif' ALT = 'Phonecard Menu Bullet'><A HREF = 'Prices.asp?type=Phonecards'><IMG CLASS = 'mnu' SRC = 'Images/Btn BR Realisations.gif' ALT = 'Phonecard Realised Lists Button'></A><BR CLASS = 'left'><IMG SRC = 'Images/Btn BR Bullet.gif' ALT = 'Phonecard Menu Bullet'><A HREF = 'Unsolds.asp?type=Phonecards'><IMG CLASS = 'mnu' SRC = 'Images/Btn BR Unsolds.gif' ALT = 'Phonecard Unsold Lists Button'></A><BR CLASS = 'left'><IMG CLASS = 'mnu_hdr' SRC = 'Images/Mnu BR Autographs.gif' ALT = 'Autograph Menu Heading'><BR CLASS = 'left'><IMG SRC = 'Images/Btn BR Bullet.gif' ALT = 'Autograph Menu Bullet'><A HREF = 'Searches.asp?type=Autographs'><IMG CLASS = 'mnu' SRC = 'Images/Btn BR Search.gif' ALT = 'Autograph Search Button'></A><BR CLASS = 'left'><IMG SRC = 'Images/Btn BR Bullet.gif' ALT = 'Autograph Menu Bullet'><A HREF = 'Galleries.asp?type=Autographs'><IMG CLASS = 'mnu' SRC = 'Images/Btn BR Galleries.gif' ALT = 'Autograph Galleries Button'></A><BR CLASS = 'left'><IMG SRC = 'Images/Btn BR Bullet.gif' ALT = 'Autograph Menu Bullet'><A HREF = 'Catalogues.asp?type=Autographs'><IMG CLASS = 'mnu' SRC = 'Images/Btn BR Catalogues.gif' ALT = 'Autograph Catalogues Button'></A><BR CLASS = 'left'><IMG SRC = 'Images/Btn BR Bullet.gif' ALT = 'Autograph Menu Bullet'><A HREF = 'Prices.asp?type=Autographs'><IMG CLASS = 'mnu' SRC = 'Images/Btn BR Realisations.gif' ALT = 'Autograph Realised Lists Button'></A><BR CLASS = 'left'><IMG SRC = 'Images/Btn BR Bullet.gif' ALT = 'Autograph Menu Bullet'><A HREF = 'Unsolds.asp?type=Autographs'><IMG CLASS = 'mnu' SRC = 'Images/Btn BR Unsolds.gif' ALT = 'Autograph Unsold Lists Button'></A><BR CLASS = 'left'><IMG CLASS = 'mnu_hdr' SRC = 'Images/Mnu BR Collectables.gif' ALT = 'Collectables Menu Heading'><BR CLASS = 'left'><IMG SRC = 'Images/Btn BR Bullet.gif' ALT = 'Collectables Menu Bullet'><A HREF = 'Searches.asp?type=Collectables'><IMG CLASS = 'mnu' SRC = 'Images/Btn BR Search.gif' ALT = 'Collectables Search Button'></A><BR CLASS = 'left'><IMG SRC = 'Images/Btn BR Bullet.gif' ALT = 'Collectables Menu Bullet'><A HREF = 'Galleries.asp?type=Collectables'><IMG CLASS = 'mnu' SRC = 'Images/Btn BR Galleries.gif' ALT = 'Collectables Galleries Button'></A><BR CLASS = 'left'><IMG SRC = 'Images/Btn BR Bullet.gif' ALT = 'Collectables Menu Bullet'><A HREF = 'Catalogues.asp?type=Collectables'><IMG CLASS = 'mnu' SRC = 'Images/Btn BR Catalogues.gif' ALT = 'Collectables Catalogues Button'></A><BR CLASS = 'left'><IMG SRC = 'Images/Btn BR Bullet.gif' ALT = 'Collectables Menu Bullet'><A HREF = 'Prices.asp?type=Collectables'><IMG CLASS = 'mnu' SRC = 'Images/Btn BR Realisations.gif' ALT = 'Collectables Realised Lists Button'></A><BR CLASS = 'left'><IMG SRC = 'Images/Btn BR Bullet.gif' ALT = 'Collectables Menu Bullet'><A HREF = 'Unsolds.asp?type=Collectables'><IMG CLASS = 'mnu' SRC = 'Images/Btn BR Unsolds.gif' ALT = 'Collectables Unsold Lists Button'></A><BR CLASS = 'left'></P><DIV ID='main'>
   <IMG SRC = "Images/Lgo BR Stamps.gif" CLASS = "logo" ALT = "Brian Reeve Stamp Auctions Logo">

   <P>An all world public auction of stamps held at <A HREF = "Contact.asp">our premises</A> in London.</P>

   <OL>
<LI CLASS = 'show'><A HREF ='Lot View.asp?type=Stamps&amp;nr=303&amp;lot=74'><IMG SRC = 'Thumb.asp?file=Lots%2F303s%2D0074%2D4%2Ejpg&amp;width=125&amp;height=125' ALT = 'Stamps Sale no. 303 Lot 74 Picture 4 of 4'></A><DIV><P CLASS = 'lot_p'>Lot 74 - No Reserve</P><P>9550  AUTOGRAPHS<BR>Cricket: Colin Cowdrey, Clive Lloyd, Mike Atherton &amp; Alec St&#8230;<SPAN CLASS = 'dtl_now'><A HREF = 'Lot View.asp?type=Stamps&amp;nr=303&amp;lot=74'>Details</A></SPAN><SPAN CLASS = 'dtl_now'><A HREF = 'Bid Make.asp?type=Stamps&amp;nr=303&amp;lgn=Y'>Bid&nbsp;Now</A></SPAN></P></DIV></LI><LI CLASS = 'hide'><A HREF ='Lot View.asp?type=Stamps&amp;nr=303&amp;lot=104'><IMG SRC = 'Thumb.asp?file=Lots%2F303s%2D0104%2D1%2Ejpg&amp;width=125&amp;height=125' ALT = 'Stamps Sale no. 303 Lot 104 Picture'></A><DIV><P CLASS = 'lot_p'>Lot 104 - Estimate &pound;8</P><P>9550  AUTOGRAPHS<BR>The Christians: 4 autographs on Grenada 1979 FDC. Unaddresse&#8230;<SPAN CLASS = 'dtl_now'><A HREF = 'Lot View.asp?type=Stamps&amp;nr=303&amp;lot=104'>Details</A></SPAN><SPAN CLASS = 'dtl_now'><A HREF = 'Bid Make.asp?type=Stamps&amp;nr=303&amp;lgn=Y'>Bid&nbsp;Now</A></SPAN></P></DIV></LI><LI CLASS = 'hide'><A HREF ='Lot View.asp?type=Stamps&amp;nr=303&amp;lot=226'><IMG SRC = 'Thumb.asp?file=Lots%2F303s%2D0226%2D1%2Ejpg&amp;width=125&amp;height=125' ALT = 'Stamps Sale no. 303 Lot 226 Picture'></A><DIV><P CLASS = 'lot_p'>Lot 226 - No Reserve</P><P>1015  MUSCAT<BR>1944 set F/U, probably CTO. Sold &quot;as is&quot;. SG 1-15 Cat &#163;120 (&#8230;<SPAN CLASS = 'dtl_now'><A HREF = 'Lot View.asp?type=Stamps&amp;nr=303&amp;lot=226'>Details</A></SPAN><SPAN CLASS = 'dtl_now'><A HREF = 'Bid Make.asp?type=Stamps&amp;nr=303&amp;lgn=Y'>Bid&nbsp;Now</A></SPAN></P></DIV></LI><LI CLASS = 'hide'><A HREF ='Lot View.asp?type=Stamps&amp;nr=303&amp;lot=299'><IMG SRC = 'Thumb.asp?file=Lots%2F303s%2D0299%2D1%2Ejpg&amp;width=125&amp;height=125' ALT = 'Stamps Sale no. 303 Lot 299 Picture'></A><DIV><P CLASS = 'lot_p'>Lot 299 - Estimate &pound;140</P><P>1566  KING GEORGE V<BR>1d red imperforate paper trial on John Allan special finish &#8230;<SPAN CLASS = 'dtl_now'><A HREF = 'Lot View.asp?type=Stamps&amp;nr=303&amp;lot=299'>Details</A></SPAN><SPAN CLASS = 'dtl_now'><A HREF = 'Bid Make.asp?type=Stamps&amp;nr=303&amp;lgn=Y'>Bid&nbsp;Now</A></SPAN></P></DIV></LI><LI CLASS = 'hide'><A HREF ='Lot View.asp?type=Stamps&amp;nr=303&amp;lot=341'><IMG SRC = 'Thumb.asp?file=Lots%2F303s%2D0341%2D1%2Ejpg&amp;width=125&amp;height=125' ALT = 'Stamps Sale no. 303 Lot 341 Picture'></A><DIV><P CLASS = 'lot_p'>Lot 341 - Estimate &pound;12</P><P>3850  FIRST DAY COVERS<BR>1937 Coronation Canadian Portrait FDC with Manchester wavy l&#8230;<SPAN CLASS = 'dtl_now'><A HREF = 'Lot View.asp?type=Stamps&amp;nr=303&amp;lot=341'>Details</A></SPAN><SPAN CLASS = 'dtl_now'><A HREF = 'Bid Make.asp?type=Stamps&amp;nr=303&amp;lgn=Y'>Bid&nbsp;Now</A></SPAN></P></DIV></LI><LI CLASS = 'index'><A HREF = 'Lot View.asp?type=Stamps&amp;nr=303&amp;lot=74'>&nbsp;1&nbsp;</A><A HREF = 'Lot View.asp?type=Stamps&amp;nr=303&amp;lot=104'>&nbsp;2&nbsp;</A><A HREF = 'Lot View.asp?type=Stamps&amp;nr=303&amp;lot=226'>&nbsp;3&nbsp;</A><A HREF = 'Lot View.asp?type=Stamps&amp;nr=303&amp;lot=299'>&nbsp;4&nbsp;</A><A HREF = 'Lot View.asp?type=Stamps&amp;nr=303&amp;lot=341'>&nbsp;5&nbsp;</A><SPAN>More <A HREF = 'Gallery.asp?type=Stamps&amp;nr=303'>Pictures</A>&hellip;</SPAN></LI>
   </OL>
<P CLASS = 'next_p'>Our next stamp sale is on Wed&nbsp;8&nbsp;Sep at 2:30&nbsp;pm.</P><P CLASS = 'dtl_p'><SPAN CLASS = 'dtl_now'><A HREF = 'Bid Make.asp?type=Stamps&amp;nr=303&amp;lgn=Y'>Bid Now</A></SPAN><SPAN CLASS = 'dtl_now'><A HREF = 'Searches.asp?type=Stamps'>Search</A></SPAN><SPAN CLASS = 'dtl_now'><A HREF = 'Galleries.asp?type=Stamps'>Gallery</A></SPAN><SPAN CLASS = 'dtl_now'><A HREF = 'Catalogues.asp?type=Stamps'>Catalogue</A></SPAN><SPAN CLASS = 'dtl_now'>More <A HREF = 'Auctions.asp'>Auctions</A>&hellip;</SPAN></P><P CLASS = 'live_p'><A HREF = 'http://www.the-saleroom.com/brianreeveauctions/'>Live Internet Bidding</A> is available for this auction - more <A HREF= 'Live.asp?type=Stamps&amp;nr=303'>details</A>&hellip;</P><HR>
   <IMG SRC = "Images/Lgo Sajal Covers.gif" CLASS = "logo" ALT = "Sajal Philatelics Cover Auctions Logo">

   <P>A postal auction of first day covers &amp; autographs.</P>

   <OL>
<LI CLASS = 'show'><A HREF ='Lot View.asp?type=Covers&amp;nr=299&amp;lot=31'><IMG SRC = 'Thumb.asp?file=Lots%2F299f%2D0031%2D1%2Ejpg&amp;width=125&amp;height=125' ALT = 'Covers Sale no. 299 Lot 31 Picture'></A><DIV><P CLASS = 'lot_p'>Lot 31 - Estimate &pound;75</P><P>5165  1965 CHURCHILL<BR>Ordinary &amp; Phosphor sets together on GPO FDC with Churchill &#8230;<SPAN CLASS = 'dtl_now'><A HREF = 'Lot View.asp?type=Covers&amp;nr=299&amp;lot=31'>Details</A></SPAN><SPAN CLASS = 'dtl_now'><A HREF = 'Bid Make.asp?type=Covers&amp;nr=299&amp;lgn=Y'>Bid&nbsp;Now</A></SPAN></P></DIV></LI><LI CLASS = 'hide'><A HREF ='Lot View.asp?type=Covers&amp;nr=299&amp;lot=378'><IMG SRC = 'Thumb.asp?file=Lots%2F299f%2D0378%2D1%2Ejpg&amp;width=125&amp;height=125' ALT = 'Covers Sale no. 299 Lot 378 Picture'></A><DIV><P CLASS = 'lot_p'>Lot 378 - Estimate &pound;125</P><P>5475  1985 INSECTS<BR>National Association of Boys Clubs Abercrave Centre Swansea &#8230;<SPAN CLASS = 'dtl_now'><A HREF = 'Lot View.asp?type=Covers&amp;nr=299&amp;lot=378'>Details</A></SPAN><SPAN CLASS = 'dtl_now'><A HREF = 'Bid Make.asp?type=Covers&amp;nr=299&amp;lgn=Y'>Bid&nbsp;Now</A></SPAN></P></DIV></LI><LI CLASS = 'hide'><A HREF ='Lot View.asp?type=Covers&amp;nr=299&amp;lot=385'><IMG SRC = 'Thumb.asp?file=Lots%2F299f%2D0385%2D1%2Ejpg&amp;width=125&amp;height=125' ALT = 'Covers Sale no. 299 Lot 385 Picture'></A><DIV><P CLASS = 'lot_p'>Lot 385 - Estimate &pound;125</P><P>5481  1985 ROYAL MAIL ANNIVERSARY<BR>National Association of Boys Clubs Trentham Gardens Stoke on&#8230;<SPAN CLASS = 'dtl_now'><A HREF = 'Lot View.asp?type=Covers&amp;nr=299&amp;lot=385'>Details</A></SPAN><SPAN CLASS = 'dtl_now'><A HREF = 'Bid Make.asp?type=Covers&amp;nr=299&amp;lgn=Y'>Bid&nbsp;Now</A></SPAN></P></DIV></LI><LI CLASS = 'hide'><A HREF ='Lot View.asp?type=Covers&amp;nr=299&amp;lot=393'><IMG SRC = 'Thumb.asp?file=Lots%2F299f%2D0393%2D1%2Ejpg&amp;width=125&amp;height=125' ALT = 'Covers Sale no. 299 Lot 393 Picture'></A><DIV><P CLASS = 'lot_p'>Lot 393 - Estimate &pound;125</P><P>5485  1985 BRITISH FILM YEAR<BR>National Association of Boys Clubs Belfast Official FDC. Ver&#8230;<SPAN CLASS = 'dtl_now'><A HREF = 'Lot View.asp?type=Covers&amp;nr=299&amp;lot=393'>Details</A></SPAN><SPAN CLASS = 'dtl_now'><A HREF = 'Bid Make.asp?type=Covers&amp;nr=299&amp;lgn=Y'>Bid&nbsp;Now</A></SPAN></P></DIV></LI><LI CLASS = 'hide'><A HREF ='Lot View.asp?type=Covers&amp;nr=299&amp;lot=1157'><IMG SRC = 'Thumb.asp?file=Lots%2F299f%2D1157%2D1%2Ejpg&amp;width=125&amp;height=125' ALT = 'Covers Sale no. 299 Lot 1157 Picture'></A><DIV><P CLASS = 'lot_p'>Lot 1157 - Estimate &pound;250</P><P>8270  AUTOGRAPHED: FOOTBALL<BR>Bobby Moore (1941-93): Autographed on 1990 Sierra Leone Ital&#8230;<SPAN CLASS = 'dtl_now'><A HREF = 'Lot View.asp?type=Covers&amp;nr=299&amp;lot=1157'>Details</A></SPAN><SPAN CLASS = 'dtl_now'><A HREF = 'Bid Make.asp?type=Covers&amp;nr=299&amp;lgn=Y'>Bid&nbsp;Now</A></SPAN></P></DIV></LI><LI CLASS = 'index'><A HREF = 'Lot View.asp?type=Covers&amp;nr=299&amp;lot=31'>&nbsp;1&nbsp;</A><A HREF = 'Lot View.asp?type=Covers&amp;nr=299&amp;lot=378'>&nbsp;2&nbsp;</A><A HREF = 'Lot View.asp?type=Covers&amp;nr=299&amp;lot=385'>&nbsp;3&nbsp;</A><A HREF = 'Lot View.asp?type=Covers&amp;nr=299&amp;lot=393'>&nbsp;4&nbsp;</A><A HREF = 'Lot View.asp?type=Covers&amp;nr=299&amp;lot=1157'>&nbsp;5&nbsp;</A><SPAN>More <A HREF = 'Gallery.asp?type=Covers&amp;nr=299'>Pictures</A>&hellip;</SPAN></LI>
   </OL>
<P CLASS = 'next_p'>Our next first day covers &amp; autographs sale is on Thu&nbsp;16&nbsp;Sep (last bids 3&nbsp;pm).</P><P CLASS = 'dtl_p'><SPAN CLASS = 'dtl_now'><A HREF = 'Bid Make.asp?type=Covers&amp;nr=299&amp;lgn=Y'>Bid Now</A></SPAN><SPAN CLASS = 'dtl_now'><A HREF = 'Searches.asp?type=Covers'>Search</A></SPAN><SPAN CLASS = 'dtl_now'><A HREF = 'Galleries.asp?type=Covers'>Gallery</A></SPAN><SPAN CLASS = 'dtl_now'><A HREF = 'Catalogues.asp?type=Covers'>Catalogue</A></SPAN><SPAN CLASS = 'dtl_now'>More <A HREF = 'Auctions.asp'>Auctions</A>&hellip;</SPAN></P><HR>
   <IMG SRC = "Images/Lgo BR Phonecards.gif" CLASS = "logo" ALT = "Brian Reeve Phonecard Auctions Logo">

   <P>A public auction of phonecards held at <A HREF = "Contact.asp">our premises</A> in London.</P>

   <P>These are not held so regularly but we usually have some phonecard lots<BR>
   in the early part of the stamp auction.</P>
<HR>
   <IMG SRC = "Images/Lgo BR Autographs.gif" CLASS = "logo" ALT = "Brian Reeve Autograph Auctions Logo">

   <P>A public auction of autographs held at <A HREF = "Contact.asp">our premises</A> in London.</P>

   <P>These are not held so regularly but we usually have some autographs<BR>
   in the early part of the stamp auction and normally a good selection<BR>
   in the Sajal Philatelics Cover Auctions.</P>
<HR>
   <IMG SRC = "Images/Lgo BR Collectables.gif" CLASS = "logo" ALT = "Brian Reeve Collectables Auctions Logo">

   <P>A public auction of collectables including coins, cigarette cards,<BR>
   postcards (early &amp; modern), etc. held at <A HREF = "Contact.asp">our premises</A> in London.</P>

   <P>These are not held so regularly but we usually have some lots<BR>
   in the early part of the stamp auction.</P>
</DIV><DIV ID = 'perf_r'></DIV><DIV ID = 'perf_b'></DIV><SPAN ID = 'srv_err'></SPAN>
</BODY>

</HTML>
