<!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=54'><IMG SRC = 'Thumb.asp?file=Lots%2F303s%2D0054%2D6%2Ejpg&amp;width=125&amp;height=125' ALT = 'Stamps Sale no. 303 Lot 54 Picture 6 of 15'></A><DIV><P CLASS = 'lot_p'>Lot 54 - Estimate &pound;50</P><P>9550  AUTOGRAPHS<BR>1930s sketches of famous people by T.Copeland, mainly approx&#8230;<SPAN CLASS = 'dtl_now'><A HREF = 'Lot View.asp?type=Stamps&amp;nr=303&amp;lot=54'>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=87'><IMG SRC = 'Thumb.asp?file=Lots%2F303s%2D0087%2D1%2Ejpg&amp;width=125&amp;height=125' ALT = 'Stamps Sale no. 303 Lot 87 Picture'></A><DIV><P CLASS = 'lot_p'>Lot 87 - No Reserve</P><P>9550  AUTOGRAPHS<BR>Jeremy Thorpe: Autographed on black &amp; white photo of The bri&#8230;<SPAN CLASS = 'dtl_now'><A HREF = 'Lot View.asp?type=Stamps&amp;nr=303&amp;lot=87'>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=209'><IMG SRC = 'Thumb.asp?file=Lots%2F303s%2D0209%2D1%2Ejpg&amp;width=125&amp;height=125' ALT = 'Stamps Sale no. 303 Lot 209 Picture'></A><DIV><P CLASS = 'lot_p'>Lot 209 - Estimate &pound;12</P><P>640   GIBRALTAR<BR>1938 5/- perf 13 Mint, fine. SG 129a Cat &#163;42<SPAN CLASS = 'dtl_now'><A HREF = 'Lot View.asp?type=Stamps&amp;nr=303&amp;lot=209'>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=216'><IMG SRC = 'Thumb.asp?file=Lots%2F303s%2D0216%2D1%2Ejpg&amp;width=125&amp;height=125' ALT = 'Stamps Sale no. 303 Lot 216 Picture'></A><DIV><P CLASS = 'lot_p'>Lot 216 - Estimate &pound;20</P><P>755   IRELAND<BR>Cinderellas: 1960s-70s Dublin Horse Show &amp; Spring Show label&#8230;<SPAN CLASS = 'dtl_now'><A HREF = 'Lot View.asp?type=Stamps&amp;nr=303&amp;lot=216'>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=273'><IMG SRC = 'Thumb.asp?file=Lots%2F303s%2D0273%2D1%2Ejpg&amp;width=125&amp;height=125' ALT = 'Stamps Sale no. 303 Lot 273 Picture'></A><DIV><P CLASS = 'lot_p'>Lot 273 - Estimate &pound;120</P><P>1561  QUEEN VICTORIA: LINE ENGRAVED<BR>1854-57 2d blue, plate 5, perf 16, strip of 3 used, fine. SG&#8230;<SPAN CLASS = 'dtl_now'><A HREF = 'Lot View.asp?type=Stamps&amp;nr=303&amp;lot=273'>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=54'>&nbsp;1&nbsp;</A><A HREF = 'Lot View.asp?type=Stamps&amp;nr=303&amp;lot=87'>&nbsp;2&nbsp;</A><A HREF = 'Lot View.asp?type=Stamps&amp;nr=303&amp;lot=209'>&nbsp;3&nbsp;</A><A HREF = 'Lot View.asp?type=Stamps&amp;nr=303&amp;lot=216'>&nbsp;4&nbsp;</A><A HREF = 'Lot View.asp?type=Stamps&amp;nr=303&amp;lot=273'>&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=76'><IMG SRC = 'Thumb.asp?file=Lots%2F299f%2D0076%2D1%2Ejpg&amp;width=125&amp;height=125' ALT = 'Covers Sale no. 299 Lot 76 Picture'></A><DIV><P CLASS = 'lot_p'>Lot 76 - Estimate &pound;40</P><P>5231  1969 ANNIVERSARIES<BR>Grammar School Centenary Doncaster Official FDC. Vertical br&#8230;<SPAN CLASS = 'dtl_now'><A HREF = 'Lot View.asp?type=Covers&amp;nr=299&amp;lot=76'>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=374'><IMG SRC = 'Thumb.asp?file=Lots%2F299f%2D0374%2D1%2Ejpg&amp;width=125&amp;height=125' ALT = 'Covers Sale no. 299 Lot 374 Picture'></A><DIV><P CLASS = 'lot_p'>Lot 374 - Estimate &pound;125</P><P>5473  1985 FAMOUS TRAINS<BR>National Association of Boys Clubs Blenheim Palace Woodstock&#8230;<SPAN CLASS = 'dtl_now'><A HREF = 'Lot View.asp?type=Covers&amp;nr=299&amp;lot=374'>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=703'><IMG SRC = 'Thumb.asp?file=Lots%2F299f%2D0703%2D1%2Ejpg&amp;width=125&amp;height=125' ALT = 'Covers Sale no. 299 Lot 703 Picture'></A><DIV><P CLASS = 'lot_p'>Lot 703 - Estimate &pound;150</P><P>7007  DEFINITIVE FDCs: KING EDWARD VIII<BR>1936 &#189;d, 1&#189;d &amp; 2&#189;d on illustrated FDC with Kingstanding Road&#8230;<SPAN CLASS = 'dtl_now'><A HREF = 'Lot View.asp?type=Covers&amp;nr=299&amp;lot=703'>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=440'><IMG SRC = 'Thumb.asp?file=Lots%2F299f%2D0440%2D1%2Ejpg&amp;width=125&amp;height=125' ALT = 'Covers Sale no. 299 Lot 440 Picture'></A><DIV><P CLASS = 'lot_p'>Lot 440 - Estimate &pound;40</P><P>5537  1988 AUSTRALIAN BICENTENARY<BR>Australian Bicentennial London EC (Covercraft) Official FDC &#8230;<SPAN CLASS = 'dtl_now'><A HREF = 'Lot View.asp?type=Covers&amp;nr=299&amp;lot=440'>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=780'><IMG SRC = 'Thumb.asp?file=Lots%2F299f%2D0780%2D1%2Ejpg&amp;width=125&amp;height=125' ALT = 'Covers Sale no. 299 Lot 780 Picture'></A><DIV><P CLASS = 'lot_p'>Lot 780 - Estimate &pound;95</P><P>7020  REGIONAL FIRST DAY COVERS<BR>2001 England regionals set of 4 on GPO FDC with Windsor Cast&#8230;<SPAN CLASS = 'dtl_now'><A HREF = 'Lot View.asp?type=Covers&amp;nr=299&amp;lot=780'>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=76'>&nbsp;1&nbsp;</A><A HREF = 'Lot View.asp?type=Covers&amp;nr=299&amp;lot=374'>&nbsp;2&nbsp;</A><A HREF = 'Lot View.asp?type=Covers&amp;nr=299&amp;lot=703'>&nbsp;3&nbsp;</A><A HREF = 'Lot View.asp?type=Covers&amp;nr=299&amp;lot=440'>&nbsp;4&nbsp;</A><A HREF = 'Lot View.asp?type=Covers&amp;nr=299&amp;lot=780'>&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>
