<html>  <head> <meta name="GENERATOR" content="Microsoft FrontPage 5.0"> <meta name="ProgId" content="FrontPage.Editor.Document"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <title>pes Seigneur des anneaux</title>  <SCRIPT LANGUAGE="javascript"> <!-- //item_ID="id"; //item_Name="Name"; //item_Sku="SKU"; //item_Price="00.00"; quantity="1";  //VARIABLES FOR GLOBAL USE no_of_order_pages = 100; //the number of possible product pages selected for ordering  //====== Cookie functions ================================= function getCookieVal (offset) {   var endstr = document.cookie.indexOf (";", offset);   if (endstr == -1)     endstr = document.cookie.length;   return document.cookie.substring(offset, endstr); } function GetCookie (name) {   var arg = name + "=";   var alen = arg.length;   var clen = document.cookie.length;   var i = 0;   while (i < clen) {     var j = i + alen;     if (document.cookie.substring(i, j) == arg)       return getCookieVal (j);     i = document.cookie.indexOf(" ", i) + 1;     if (i == 0) break;    }   return null; } //-------- Array function compatible with NS 2.0x, 3.0x and MSIE function makeArray(n)  {    this.length = n;    for (var i = 1; i <= n; i++)    {       this[i] = 0;    }    return this; } function addtoCookieArray(cookieName, info) {     var tmpString=GetCookie(cookieName);     if(GetCookie(cookieName) !=null)     {       tmpString = GetCookie(cookieName) + info + ",";       //append to the current cookie values       document.cookie = cookieName + "=" + tmpString;     }     else     {       tmpString = info + ",";       document.cookie = cookieName + "=" + tmpString; // alert("cookieNo:"+cookieName + "=" + tmpString);     } } /* this defines an array for holding the user configuration cookie contents when parsed out. Increase the count if you need to store more but do not forget that the limitation is 4096 bytes */ // this parses the info stored in the config cookie into the array function parseIt(cookieName, array)  {  config=GetCookie(cookieName);  config+="";           // make it a string if it was not before  var y = 1; while(config.indexOf(",") >= 0)   {    var pos = config.indexOf(",");    if (pos==0)      array[y]="";    else      array[y]=unescape(config.substring(0,pos));    y++;    config=config.substring(pos+1,config.length);  }  return y-1; } // return -1 if total # of elements in array exceed max limit // return 0 if element is not found in the array // return array index if element is found in the array function posInArray(cookieName, element) {  var tmp_array = new makeArray(no_of_order_pages);  total_count=parseIt(cookieName, tmp_array);   if (total_count >= no_of_order_pages)    return -1;   for (i=1; i<=total_count; i++)  {   if (tmp_array[i]==element)    return i;  }  return 0; } // This modifies the value of the n-th element in the array stored in cookie. // For integer arrays, it will perform addition to existing value. // For string arrays, it will perform concatenation. function addValueInArray(cookieName, index, element) {  var tmp_array = new makeArray(no_of_order_pages);  total_count=parseIt(cookieName, tmp_array);  tmp_array[index] = eval(tmp_array[index]) + eval(element);  tmp_array[index] = RoundQty( tmp_array[index] );  if (tmp_array[index] > 9) return 0;  // remove existing cookie  document.cookie = cookieName + "=; expires=Thu, 01-Jan-70 00:00:01 GMT";  // convert from array to cookie  for (i=1; i<=total_count; i++)      addtoCookieArray(cookieName, tmp_array[i]);  return tmp_array[index]; } // check if input is an integer and it is greater than 0 function isInt(elm) {     var elmstr = "" + elm;     if (elmstr == "")         return false;     for (var i = 0; i < elmstr.length; i++)     {         if (elmstr.charAt(i) < "0" || elmstr.charAt(i) > "9")             { return false; }     }     return true; } function RoundQty(elm) {     var elmstr = "" + elm;     if (elmstr == "")         return 0;     DotExist=0;     DigitAfterDecimal=0;     for (var i = 0; i < elmstr.length; i++)     {         if (elmstr.charAt(i) < "0" || elmstr.charAt(i) > "9") {              if ((elmstr.charAt(i) == ".")&&(DotExist == 0))                 DotExist = 1;             else                 return 0;          }         else if (DotExist == 1){             if (DigitAfterDecimal < 2)                 DigitAfterDecimal = DigitAfterDecimal + 1 ;             else {                 if (elmstr.charAt(i)>="5"){      var sTmp100 = elmstr.substring(0, i-3) + elmstr.substring(i-2, i);      nTmp = Number( sTmp100 ) ;      nTmp = nTmp + 1;            var sTmp = "" + nTmp;      if (sTmp.length < 2)    sTmp = sTmp.substring(0, sTmp.length - 2) + ".0" + sTmp.substring(sTmp.length - 2, sTmp.length );      else    sTmp = sTmp.substring(0, sTmp.length - 2) + "." + sTmp.substring(sTmp.length - 2, sTmp.length );                    return sTmp ;                 }                 else                                   return Number( elmstr.substring(0, i) );             }         }            }     return elm; } // check for valid quantity and prompt user if there is an error // if valid is okay, update the hidden variable used by the basket buttons.  function updateQuantity() { // If quantity is valid, then go on to add stuff to cookie   Qty=RoundQty(document.buynow.quantity.value);   if (Qty >=10 || Qty==0 || document.buynow.quantity.value==0)   {     alert ("S.V.P. Entrez une valeur plus grande que 1 ou plus petite que 10!");     document.buynow.quantity.value = document.buynow.quan.value;     return;   }   document.buynow.quan.value = Qty;   document.buynow.quantity.value = Qty; }  function addtoBasket(productID, productName, productSku, productPrice, productQuantity) {   // test if browser supports cookie   document.cookie = "testcookie=mytestvalue";   if (GetCookie("testcookie")!="mytestvalue")   {     alert("\nNO COOKIE SUPPORT\n \nYou will not be able to use the shopping basket without cookie support.\n \nFor more information on Cookie Support and turning it on please see your Browsers help section.\n \n ");     return;   }   // if product already in shopping basket   search_index = posInArray("productID", productID); if (search_index==-1) {    alert("Votre panier est plein. Vous ne pouvez ajouter d'autres articles.");    return; }   if (search_index!=0)   {  total_quantity=addValueInArray("quantity", search_index, productQuantity);   }   else   {       addtoCookieArray("productID", productID);       addtoCookieArray("product", productName);       addtoCookieArray("sku", productSku);       addtoCookieArray("price", productPrice);       addtoCookieArray("quantity", productQuantity);       total_quantity=productQuantity;   } if (total_quantity == 0)   {       alert(productQuantity + " '" + unescape(productName) + "' " + "ne peut pas tre ajout au panier.\n\n RAISON:\n Vous ne pouvez acheter plus de 9 mme article");   }   else if(productQuantity == 1)   {       alert(productQuantity + " " + unescape(productName) + " " + "a t ajout  votre panier d'achat.\n\nEnsemble, vous avez "+  total_quantity + " article(s) de ce mme modle dans votre panier d'achat.");   }   else   {       alert(productQuantity + " " + unescape(productName) + " " + "ont ts ajouts  votre panier d'achat.\n\nEnsemble, vous avez "+  total_quantity + " article(s) de ce mme modle dans votre panier d'achat.");    } } //-->  </SCRIPT>  <style fprolloverstyle>A:hover {color: #B6D213} </style> </head> <META http-equiv="Pragma" content="no-cache"> <body bgcolor="#FFECC6" text="#824B00" link="#F0D8A0" vlink="#F0D8A0" alink="#F0D8A0" topmargin="2" leftmargin="4">  <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" bgcolor="#824B00">   <tr>     <td width="1%">&nbsp;</td>     <td width="14%" valign="bottom"><a href="index.html">     <img border="0" src="images/logo_faucon_copyright_br.gif" alt="Retour accueil" width="22" height="30"></a>     <font color="#F0D8A0" size="2" face="Arial"><a href="index.html">Accueil</a></font></td>     <td width="71%">     <p align="center"> <b><font face="Arial" color="#F0D8A0">pes officielles Le Seigneur  des Anneaux</font></b></td>     <td width="13%" valign="bottom">     <p align="right"> <font FACE="Arial" SIZE="2"><a target="_top" href="catalog.htm">Catalogue</a></font></td>     <td width="1%">&nbsp;</td>   </tr> </table>  <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" bgcolor="#824B00">   <tr>     <td width="16%">&nbsp;<font face="Arial" size="1"><a target="_blank" href="converter.htm">Conversion      montaire</a></font></td>     <td width="69%">     <p align="center">     <font color="#F0D8A0" face="Arial" size="2">* Frais de transport inclus *<br>     </font><font face="Arial" size="1"><font color="#F0D8A0">(Cliq</font></font><font color="#F0D8A0" face="Arial" size="1">uez      sur une image pour un agrandissement)</font></td>     <td width="14%" VALIGN="bottom"><P ALIGN="right"><A HREF="basket.htm">     <IMG BORDER="0" SRC="images/cart.gif" ALT="Voir votre panier" width="27" height="20"></A></td>     <td width="1%">&nbsp;</td>   </tr> </table>  <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%">   <tr>     <td width="16%" align="center">&nbsp;</td>     <td width="68%" align="center"><b>     <font color="#435A16" face="Arial" size="2">- Les pes officielles  du Seigneur des Anneaux -<br> Trs haute qualit.</font></b></td>     <td width="16%" align="center">&nbsp;</td>   </tr>   </table>  <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" height="109">   <tr>     <td width="100%" colspan="6" height="16">     </td>   </tr>   <tr>     <td width="100%" colspan="6" height="16">     <p align="center"><b><font color="#435A16" face="Arial" size="2">Mini      pes, rplique exacte des pes officielles pleine grandeur<br> &nbsp;</font></b></td>   </tr>   <tr>     <td width="100%" height="17" align="center" colspan="6" bgcolor="#800000">     <font face="Arial" size="2" color="#F8C95C">Mini pes du Seigneur des      Anneaux</font></td>   </tr>   <tr>     <td width="16%" height="17" align="center">     </td>     <td width="17%" height="17" align="center"></td>     <td width="17%" height="17" align="center">     <p align="center">     <font size="1" face="Arial">UC1265MIN</font></td>     <td width="17%" height="17" align="center"></td>     <td width="17%" height="17" align="center">     <p align="center">     <font size="1" face="Arial">UC1266MIN</font></td>     <td width="17%" height="17" align="center"></td>   </tr>   <tr>     <td width="16%" height="17" align="center">     <p></td>     <td width="17%" height="17" align="center"></td>     <td width="17%" height="17" align="center">     <p><font color="#435A16" size="2" face="Arial">Glamdring </font>     <font color="#435A16" face="Arial" size="1">1/5</font></td>     <td width="17%" height="17" align="center"></td>     <td width="17%" height="17" align="center">     <p><font color="#435A16"><font face="Arial" size="2">Witchking</font><font face="Arial" size="1">      1/5</font></font></td>     <td width="17%" height="17" align="center"></td>   </tr>   <tr>     <td width="16%" height="19" align="center" valign="bottom">     <p align="center">     <font size="1" face="Arial">UC1264MIN</font><font face="Eurostile" size="4"><br>     </font><font face="Arial"><font size="2" color="#435A16">Sting </font>     <font color="#435A16" size="1">1/3</font></font><br>     <a href="images/epees_lord/uc1264min.jpg">     <img border="2" src="images/epees_lord/uc1264min_small.jpg" xthumbnail-orig-image="images/epees_lord/uc1264min.jpg" width="94" height="200"></a></td>     <td width="17%" height="19" valign="bottom">     <font face="Arial" size="2" color="#9A6A10">chelle 1/3<br>     Hauteur total 17 cm<br>     (6-7/8&quot;)<br>     Lame acier 420 J2<br>     Support inclus</font></td>     <td width="17%" height="19" align="center" valign="bottom">     <a href="images/epees_lord/uc1265min.jpg">     <img border="2" src="images/epees_lord/uc1265min_small.jpg" xthumbnail-orig-image="images/epees_lord/uc1265min.jpg" width="86" height="250"></a></td>     <td width="17%" height="19" valign="bottom">     <font face="Arial" size="2" color="#9A6A10">chelle 1/5<br>     Hauteur total 24 cm<br>     (9-1/2&quot;)<br>     Lame acier 420 J2<br>     Support inclus</font></td>     <td width="17%" height="19" align="center" valign="bottom">     <a href="images/epees_lord/uc1266min.jpg">     <img border="2" src="images/epees_lord/uc1266min_small.jpg" xthumbnail-orig-image="images/epees_lord/uc1266min.jpg" width="75" height="250"></a></td>     <td width="17%" height="19" valign="bottom">     <font face="Arial" size="2" color="#9A6A10">chelle 1/5<br>     Hauteur total 27.5 cm<br>     (10-7/8&quot;)<br>     Lame acier 420 J2 -     Support inclus</font></td>   </tr>   <tr>     <td width="16%" height="19" align="center" valign="top">     <A HREF="javascript:void(0)" ONCLICK="window.open('stock.htm','miniwin','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=620,height=520')">     <img border="0" src="images/stock.gif" alt="Article en stock" width="50" height="18"></a></td>     <td width="17%" height="19" align="center" valign="top">&nbsp;</td>     <td width="17%" height="19" align="center" valign="top">     <A HREF="javascript:void(0)" ONCLICK="window.open('stock.htm','miniwin','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=620,height=520')">     <img border="0" src="images/stock.gif" alt="Article en stock" width="50" height="18"></a></td>     <td width="17%" height="19" align="center" valign="top">&nbsp;</td>     <td width="17%" height="19" align="center" valign="top">     <A HREF="javascript:void(0)" ONCLICK="window.open('stock.htm','miniwin','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=620,height=520')">     <img border="0" src="images/stock.gif" alt="Article en stock" width="50" height="18"></a></td>     <td width="17%" height="19" align="center" valign="top">&nbsp;</td>   </tr>   <tr>     <td width="16%" height="19" align="center" valign="top">     <font face="Arial" size="2" color="#435A16">69.00</font><font face="Arial" size="1" color="#435A16"> CAD<br>     </font>     <FONT COLOR="#FFFFFF">         <INPUT TYPE="button"     ONCLICK="addtoBasket('UC1264MIN', 'Miniature Sting', 'UC1264-MIN', '69.00', '1')" VALUE="Ajout panier Canada" STYLE="border-style:ridge; border-width:1; font-family: Arial; font-size: 8pt; background-color:#435A16; color:#F0D8A0" NAME="btnajoutcart"></FONT></td>     <td width="17%" height="19" align="center" valign="top">&nbsp;</td>     <td width="17%" height="19" align="center" valign="top">     <font face="Arial" size="2" color="#435A16">69.00</font><font face="Arial" size="1" color="#435A16"> CAD<br>     </font>     <FONT COLOR="#FFFFFF">         <INPUT TYPE="button"     ONCLICK="addtoBasket('UC1265MIN', 'Miniature Glamdring', 'UC1265-MIN', '69.00', '1')" VALUE="Ajout panier Canada" STYLE="border-style:ridge; border-width:1; font-family: Arial; font-size: 8pt; background-color:#435A16; color:#F0D8A0" NAME="btnajoutcart"></FONT></td>     <td width="17%" height="19" align="center" valign="top">&nbsp;</td>     <td width="17%" height="19" align="center" valign="top">     <font face="Arial" size="2" color="#435A16">69.00</font><font face="Arial" size="1" color="#435A16"> CAD<br>     </font>     <FONT COLOR="#FFFFFF">         <INPUT TYPE="button"     ONCLICK="addtoBasket('UC1266MIN', 'Miniature Witchking', 'UC1266-MIN', '69.00', '1')" VALUE="Ajout panier Canada" STYLE="border-style:ridge; border-width:1; font-family: Arial; font-size: 8pt; background-color:#435A16; color:#F0D8A0" NAME="btnajoutcart"></FONT></td>     <td width="17%" height="19" align="center" valign="top">&nbsp;</td>   </tr>   <tr>     <td width="16%" height="19" align="center">     <font face="Arial" size="2" color="#1D6D7E">89.00</font><font face="Arial" color="#1D6D7E" size="1">      CAD</font><font face="Arial" size="1" color="#435A16"><br>     </font>     <FONT COLOR="#FFFFFF">         <INPUT TYPE="button"     ONCLICK="addtoBasket('UC1264MINeu', 'Miniature Sting - Livraison Europe', 'UC1264-MINeu', '89.00', '1')" VALUE="Ajout panier (Europe)" STYLE="border-style:ridge; border-width:1; font-family: Arial; font-size: 8pt; background-color:#1D6D7E; color:#F0D8A0" NAME="btnajoutcart"></FONT></td>     <td width="17%" height="19" align="center">&nbsp;</td>     <td width="17%" height="19" align="center">     <font face="Arial" size="2" color="#1D6D7E">89.00</font><font face="Arial" color="#1D6D7E" size="1">      CAD</font><font face="Arial" size="1" color="#435A16"><br>     </font>     <FONT COLOR="#FFFFFF">         <INPUT TYPE="button"     ONCLICK="addtoBasket('UC1265MINeu', 'Miniature Glamdring - Livraison Europe', 'UC1265-MINeu', '89.00', '1')" VALUE="Ajout panier (Europe)" STYLE="border-style:ridge; border-width:1; font-family: Arial; font-size: 8pt; background-color:#1D6D7E; color:#F0D8A0" NAME="btnajoutcart"></FONT></td>     <td width="17%" height="19" align="center">&nbsp;</td>     <td width="17%" height="19" align="center">     <font face="Arial" size="2" color="#1D6D7E">89.00</font><font face="Arial" color="#1D6D7E" size="1">      CAD</font><font face="Arial" size="1" color="#435A16"><br>     </font>     <FONT COLOR="#FFFFFF">         <INPUT TYPE="button"     ONCLICK="addtoBasket('UC1266MINeu', 'Miniature Witchking - Livraison Europe', 'UC1266-MINeu', '89.00', '1')" VALUE="Ajout panier (Europe)" STYLE="border-style:ridge; border-width:1; font-family: Arial; font-size: 8pt; background-color:#1D6D7E; color:#F0D8A0" NAME="btnajoutcart"></FONT></td>     <td width="17%" height="19" align="center">&nbsp;</td>   </tr>   <tr>     <td width="16%" height="19" align="center">     &nbsp;</td>     <td width="17%" height="19" align="center">&nbsp;</td>     <td width="17%" height="19" align="center">     &nbsp;</td>     <td width="17%" height="19" align="center">&nbsp;</td>     <td width="17%" height="19" align="center">     &nbsp;</td>     <td width="17%" height="19" align="center">&nbsp;</td>   </tr>   <tr>     <td width="16%" height="19" align="center">     <font size="1" face="Arial">UC1267MIN</font><font face="Eurostile" size="4"><br>     </font><font face="Arial"><font size="2" color="#435A16">Narsil </font>     <font color="#435A16" size="1">1/5</font></font></td>     <td width="17%" height="19" align="center">&nbsp;</td>     <td width="17%" height="19" align="center">     <font size="1" face="Arial">UC1278MIN</font><font face="Eurostile" size="4"><br>     </font><font face="Arial" size="2" color="#435A16">Ringwraiths </font>     <font color="#435A16" size="1" face="Arial">1/5</font></td>     <td width="17%" height="19" align="center">&nbsp;</td>     <td width="17%" height="19" align="center">     &nbsp;</td>     <td width="17%" height="19" align="center">&nbsp;</td>   </tr>   <tr>     <td width="16%" height="19" align="center">     <a href="images/epees_lord/UC1267MIN.jpg">     <img border="0" src="images/epees_lord/UC1267MIN_small.jpg" xthumbnail-orig-image="images/epees_lord/UC1267MIN.jpg" width="76" height="250"></a></td>     <td width="17%" height="19" align="center">&nbsp;</td>     <td width="17%" height="19" align="center">     <a href="images/epees_lord/UC1278MIN.jpg">     <img border="0" src="images/epees_lord/UC1278MIN_small.jpg" xthumbnail-orig-image="images/epees_lord/UC1278MIN.jpg" width="74" height="250"></a></td>     <td width="17%" height="19" align="center">&nbsp;</td>     <td width="17%" height="19" align="center">     &nbsp;</td>     <td width="17%" height="19" align="center">&nbsp;</td>   </tr>   <tr>     <td width="16%" height="19" align="center">     <font size="1" face="Arial">20cm (7-7/8&quot;)</font></td>     <td width="17%" height="19" align="center">&nbsp;</td>     <td width="17%" height="19" align="center">     <font size="1" face="Arial">20.6cm (8-1/8&quot;)</font></td>     <td width="17%" height="19" align="center">&nbsp;</td>     <td width="17%" height="19" align="center">     &nbsp;</td>     <td width="17%" height="19" align="center">&nbsp;</td>   </tr>   <tr>     <td width="16%" height="19" align="center">     <A HREF="javascript:void(0)" ONCLICK="window.open('stock.htm','miniwin','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=620,height=520')">     <img border="0" src="images/stockavenir.gif" alt="Article  venir" width="58" height="18"></a></td>     <td width="17%" height="19" align="center">&nbsp;</td>     <td width="17%" height="19" align="center">     <A HREF="javascript:void(0)" ONCLICK="window.open('stock.htm','miniwin','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=620,height=520')">     <img border="0" src="images/stockavenir.gif" alt="Article  venir" width="58" height="18"></a></td>     <td width="17%" height="19" align="center">&nbsp;</td>     <td width="17%" height="19" align="center">     &nbsp;</td>     <td width="17%" height="19" align="center">&nbsp;</td>   </tr>   <tr>     <td width="16%" height="19" align="center">     <font face="Arial" size="2" color="#435A16">69.00</font><font face="Arial" size="1" color="#435A16"> CAD<br>     </font>     <FONT COLOR="#FFFFFF">         <INPUT TYPE="button"     ONCLICK="addtoBasket('UC1267MIN', 'Miniature Narsil', 'UC1267-MIN', '69.00', '1')" VALUE="Ajout panier Canada" STYLE="border-style:ridge; border-width:1; font-family: Arial; font-size: 8pt; background-color:#435A16; color:#F0D8A0" NAME="btnajoutcart"></FONT></td>     <td width="17%" height="19" align="center">&nbsp;</td>     <td width="17%" height="19" align="center">     <font face="Arial" size="2" color="#435A16">69.00</font><font face="Arial" size="1" color="#435A16"> CAD<br>     </font>     <FONT COLOR="#FFFFFF">         <INPUT TYPE="button"     ONCLICK="addtoBasket('UC1278MIN', 'Miniature Ringwraiths', 'UC1278-MIN', '69.00', '1')" VALUE="Ajout panier Canada" STYLE="border-style:ridge; border-width:1; font-family: Arial; font-size: 8pt; background-color:#435A16; color:#F0D8A0" NAME="btnajoutcart"></FONT></td>     <td width="17%" height="19" align="center">&nbsp;</td>     <td width="17%" height="19" align="center">     &nbsp;</td>     <td width="17%" height="19" align="center">&nbsp;</td>   </tr>   <tr>     <td width="16%" height="19" align="center">     <font face="Arial" size="2" color="#1D6D7E">89.00</font><font face="Arial" color="#1D6D7E" size="1">      CAD</font><font face="Arial" size="1" color="#435A16"><br>     </font>     <FONT COLOR="#FFFFFF">         <INPUT TYPE="button"     ONCLICK="addtoBasket('UC1267MINeu', 'Miniature Narsil - Livraison Europe', 'UC1267-MINeu', '89.00', '1')" VALUE="Ajout panier (Europe)" STYLE="border-style:ridge; border-width:1; font-family: Arial; font-size: 8pt; background-color:#1D6D7E; color:#F0D8A0" NAME="btnajoutcart"></FONT></td>     <td width="17%" height="19" align="center">&nbsp;</td>     <td width="17%" height="19" align="center">     <font face="Arial" size="2" color="#1D6D7E">89.00</font><font face="Arial" color="#1D6D7E" size="1">      CAD</font><font face="Arial" size="1" color="#435A16"><br>     </font>     <FONT COLOR="#FFFFFF">         <INPUT TYPE="button"     ONCLICK="addtoBasket('UC1278MINeu', 'Miniature Ringwraiths - Livraison Europe', 'UC1278-MINeu', '89.00', '1')" VALUE="Ajout panier (Europe)" STYLE="border-style:ridge; border-width:1; font-family: Arial; font-size: 8pt; background-color:#1D6D7E; color:#F0D8A0" NAME="btnajoutcart"></FONT></td>     <td width="17%" height="19" align="center">&nbsp;</td>     <td width="17%" height="19" align="center">     &nbsp;</td>     <td width="17%" height="19" align="center">&nbsp;</td>   </tr>   <tr>     <td width="16%" height="19" align="center">     &nbsp;</td>     <td width="17%" height="19" align="center">&nbsp;</td>     <td width="17%" height="19" align="center">     &nbsp;</td>     <td width="17%" height="19" align="center">&nbsp;</td>     <td width="17%" height="19" align="center">     &nbsp;</td>     <td width="17%" height="19" align="center">&nbsp;</td>   </tr>   <tr>     <td width="16%" height="19" align="center">     &nbsp;</td>     <td width="17%" height="19" align="center">&nbsp;</td>     <td width="17%" height="19" align="center">     &nbsp;</td>     <td width="17%" height="19" align="center">&nbsp;</td>     <td width="17%" height="19" align="center">     &nbsp;</td>     <td width="17%" height="19" align="center">&nbsp;</td>   </tr>   </table>  <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" height="531">   <tr>     <td width="104%" height="19" colspan="7" align="center" bgcolor="#800000">     <font face="Arial" color="#F8C95C" size="2">Seigneur des Anneaux I</font></td>   </tr>   <tr>     <td width="104%" height="19" colspan="7" align="center">     <img border="0" src="images/epees_lord/lotr.jpg" width="268" height="66"></td>   </tr>   <tr>     <td width="104%" height="19" colspan="7">     &nbsp;</td>   </tr>   <tr>     <td width="104%" height="19" colspan="7">     <p align="center" dir="ltr"><b><font face="Arial" size="2">     <font color="#435A16">- Les pes officielles du Seigneur des Anneaux I -<br> Trs haute qualit.</font></font></b></td>   </tr>   <tr>     <td width="21%" height="19">&nbsp;</td>     <td width="8%" height="19">     &nbsp;</td>     <td width="7%" height="19">&nbsp;</td>     <td width="7%" height="19">&nbsp;</td>     <td width="19%" height="19">&nbsp;</td>     <td width="15%" height="19">     &nbsp;</td>     <td width="27%" height="19">&nbsp;</td>   </tr>   <tr>     <td width="21%" height="19">     <p align="center" dir="ltr"><font color="#435A16">Frodon</font></td>     <td width="8%" height="19">     <p align="center"><FONT SIZE="1" face="Arial">UC-1264</FONT></td>     <td width="7%" height="19">&nbsp;</td>     <td width="7%" height="19">&nbsp;</td>     <td width="19%" height="19">     <p align="center"><font color="#435A16">Gandalf</font></td>     <td width="15%" height="19">     <p align="center"><FONT SIZE="1" face="Arial">UC-1265</FONT></td>     <td width="27%" height="19">&nbsp;</td>   </tr>   <tr>     <td width="21%" valign="top" height="56">     <p align="center">     <img border="0" src="images/epees_lord/sting2_small.jpg" xthumbnail-orig-image="images/epees_lord/sting2.jpg" width="140" height="175"></td>     <td width="15%" valign="top" height="1" rowspan="3">     <p align="center"><b><font face="Arial" size="2" color="#435A16">*      Sting *</font></b><font face="Eurostile" size="4" color="#9A6A10"><br>     <a href="images/epees_lord/UC1264_p.jpg">     <img border="0" src="images/epees_lord/UC1264_sting_small.jpg" width="80" height="195"></a></font></td>     <td width="7%" height="1" rowspan="3" valign="bottom">     <P ALIGN="center">     <A HREF="javascript:void(0)" ONCLICK="window.open('stock.htm','miniwin','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=620,height=520')">     <img border="0" src="images/stock.gif" alt="Article en stock" width="50" height="18"></a><font face="Arial" size="2" color="#435A16"><br>     319.00</font><font face="Arial" size="1" color="#435A16"> CAD</font><font face="Arial" size="1" color="#5A7800"><br>     </font>     <FONT COLOR="#FFFFFF">     <INPUT TYPE="button" ONCLICK="addtoBasket('UC1264', 'Lord of the Ring - Sting', 'UC-1264', '319.00', '1')" VALUE="Ajout panier Canada" STYLE="border-style:ridge; border-width:1; font-family: Arial; font-size: 8pt; background-color:#435A16; color:#F0D8A0" NAME="btnajoutcart"></FONT></td>     <td width="7%" valign="bottom" height="1" rowspan="3"></td>     <td width="19%" valign="top" height="30">     <img border="0" src="images/epees_lord/glamdring_small.jpg" xthumbnail-orig-image="images/epees_lord/glamdring.jpg" width="140" height="175"></td>     <td width="15%" valign="top" rowspan="11" height="53">     <p align="center">     <b><font face="Arial" size="2" color="#435A16">*      Glamdring *</font></b><font face="Eurostile" size="4" color="#9A6A10"><br>     <a href="images/epees_lord/UC1265_p.jpg">     <img border="0" src="images/epees_lord/UC1265_glamdring_small.jpg" width="80" height="342"></a></font></td>     <td width="27%" valign="bottom" height="53" rowspan="11">     <p ALIGN="center">     <A HREF="javascript:void(0)" ONCLICK="window.open('stock.htm','miniwin','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=620,height=520')">     <img border="0" src="images/stock.gif" alt="Article en stock" width="50" height="18"></a><font face="Arial" size="2" color="#435A16"><br>     459.00</font><font face="Arial" size="1" color="#435A16"> CAD</font><font face="Arial" size="1" color="#5A7800"><br>     </font>     <FONT COLOR="#FFFFFF">     <INPUT TYPE="button" ONCLICK="addtoBasket('UC1265', 'Lord of the Ring - Glamdring', 'UC-1265', '459.00', '1')" VALUE="Ajout panier Canada" STYLE="border-style:ridge; border-width:1; font-family: Arial; font-size: 8pt; background-color:#435A16; color:#F0D8A0" NAME="btnajoutcart"></FONT><font face="Arial" size="2" color="#1D6D7E"><br>     515.00</font><font face="Arial" size="1" color="#1D6D7E"> CAD</font><font face="Arial" size="1" color="#5A7800"><br>     </font>     <FONT COLOR="#FFFFFF">     <INPUT TYPE="button"     ONCLICK="addtoBasket('UC1265eu', 'LOTR Glamdring - Livraison Europe', 'UC-1265eu', '515.00', '1')" VALUE="Ajout panier (Europe)" STYLE="border-style:ridge; border-width:1; font-family: Arial; font-size: 8pt; background-color:#1D6D7E; color:#F0D8A0" NAME="btnajoutcart"></FONT></td>   </tr>   <tr>     <td width="21%" valign="top" height="1"></td>     <td width="19%" valign="top" height="1"></td>   </tr>   <tr>     <td width="21%" valign="top" height="1"></td>     <td width="19%" valign="top" height="1"></td>   </tr>   <tr>     <td width="21%" valign="top" height="19">&nbsp;</td>     <td width="11%" height="19">&nbsp;</td>     <td width="11%" height="19">     <p align="center">     <font face="Arial" size="2" color="#1D6D7E">349.00</font><font face="Arial" size="1" color="#1D6D7E"> CAD</font><font face="Arial" size="1" color="#5A7800"><br>     </font>     <FONT COLOR="#FFFFFF">     <INPUT TYPE="button"     ONCLICK="addtoBasket('UC1264eu', 'LOTR Sting - Livraison Europe', 'UC-1264eu', '349.00', '1')" VALUE="Ajout panier (Europe)" STYLE="border-style:ridge; border-width:1; font-family: Arial; font-size: 8pt; background-color:#1D6D7E; color:#F0D8A0" NAME="btnajoutcart"></FONT></td>     <td width="7%" valign="bottom" height="19">&nbsp;</td>     <td width="19%" valign="top" height="19">&nbsp;</td>   </tr>   <tr>     <td width="43%" valign="top" height="76" rowspan="4" colspan="3">     <font face="Arial" size="2" color="#9A6A10">Lame en acier tremp 420 J2 avec      runes Elfiques graves<br>     Poigne bois et garde en mtal patin.<br>     Plaque murale en bois.<br>     Longueur total 56 cm (22&quot;) - 2.27 kg (5 lbs)</font></td>     <td width="7%" valign="bottom" height="19">&nbsp;</td>     <td width="19%" valign="top" height="19">&nbsp;</td>   </tr>   <tr>     <td width="7%" height="19">&nbsp;</td>     <td width="19%" height="19">&nbsp;</td>   </tr>   <tr>     <td width="7%" height="19">&nbsp;</td>     <td width="19%" height="19">&nbsp;</td>   </tr>   <tr>     <td width="7%" height="19">&nbsp;</td>     <td width="19%" height="19">&nbsp;</td>   </tr>   <tr>     <td width="21%" height="19">&nbsp;</td>     <td width="15%" height="19" colspan="2">&nbsp;</td>     <td width="7%" height="19">&nbsp;</td>     <td width="19%" height="19">&nbsp;</td>   </tr>   <tr>     <td width="21%" height="19">&nbsp;</td>     <td width="8%" height="19">&nbsp;</td>     <td width="7%" height="19">&nbsp;</td>     <td width="7%" height="19">&nbsp;</td>     <td width="19%" height="19">&nbsp;</td>   </tr>   <tr>     <td width="21%" height="19">&nbsp;</td>     <td width="8%" height="19">&nbsp;</td>     <td width="7%" height="19">&nbsp;</td>     <td width="7%" height="19">&nbsp;</td>     <td width="19%" height="19">&nbsp;</td>   </tr>   <tr>     <td width="21%" height="19">&nbsp;</td>     <td width="8%" height="19">&nbsp;</td>     <td width="7%" height="19">&nbsp;</td>     <td width="7%" height="19">&nbsp;</td>     <td width="61%" height="76" colspan="3" rowspan="4" valign="top">     <font face="Arial" size="2" color="#9A6A10">Lame en acier tremp 420 J2<br>     Pommeau et garde mtal patin, Poigne cuir bleu.<br>     Plaque murale en bois.<br>     </font><font face="Arial" size="2" color="#9A6A10">Longueur total 119 cm      (47-5/8&quot;) - 4.26 kg (9.4 lbs)</font></td>   </tr>   <tr>     <td width="21%" height="19">&nbsp;</td>     <td width="8%" height="19">&nbsp;</td>     <td width="7%" height="19">&nbsp;</td>     <td width="7%" height="19">&nbsp;</td>   </tr>   <tr>     <td width="21%" height="19">&nbsp;</td>     <td width="8%" height="19">&nbsp;</td>     <td width="7%" height="19">&nbsp;</td>     <td width="7%" height="19">&nbsp;</td>   </tr>   <tr>     <td width="21%" height="19">&nbsp;</td>     <td width="8%" height="19">&nbsp;</td>     <td width="7%" height="19">&nbsp;</td>     <td width="7%" height="19">&nbsp;</td>   </tr>   <tr>     <td width="29%" height="19" colspan="2">     <hr ALIGN="Center" color="#845A0D" width="90%" size="1">     </td>     <td width="7%" height="19">&nbsp;</td>     <td width="7%" height="19">&nbsp;</td>     <td width="61%" height="19" colspan="3">     <hr ALIGN="Center" color="#845A0D" width="90%" size="1">     </td>   </tr>   <tr>     <td width="21%" height="19">     <p align="center"><font color="#435A16">Cavaliers de Sauron</font></td>     <td width="8%" height="19">     <p align="center"><font size="1" face="Arial">UC-1266</font></td>     <td width="7%" height="19">&nbsp;</td>     <td width="7%" height="19">&nbsp;</td>     <td width="19%" height="19">&nbsp;</td>     <td width="15%" height="19">     <p align="center"><font size="1" face="Arial">UC-1267</font></td>     <td width="27%" height="19">&nbsp;</td>   </tr>   <tr>     <td width="21%" height="97" valign="top">     <p align="center">     <img border="0" src="images/epees_lord/witchking_small.jpg" xthumbnail-orig-image="images/epees_lord/witchking.jpg" width="140" height="94"></td>     <td width="15%" height="384" rowspan="16" valign="top">     <p align="center">     <b><font face="Arial" color="#435A16" size="2">* Witchking *</font></b><font face="Eurostile" size="4" color="#9A6A10"><br>     <a href="images/epees_lord/UC1266_p.jpg">     <img border="0" src="images/epees_lord/UC1266_witchking_small.jpg" width="80" height="363"></a></font></td>     <td width="7%" height="384" rowspan="16" valign="bottom">     <P ALIGN="center">     <A HREF="javascript:void(0)" ONCLICK="window.open('stock.htm','miniwin','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=620,height=520')">     <img border="0" src="images/stock.gif" alt="Article en stock" width="50" height="18"></a><font face="Arial" size="2" color="#435A16"><br>     459.00</font><font face="Arial" size="1" color="#435A16"> CAD</font><font face="Arial" size="1" color="#5A7800"><br>     </font>     <FONT COLOR="#FFFFFF">     <INPUT TYPE="button"     ONCLICK="addtoBasket('UC1266', 'Lord of the Ring - Witchking', 'UC-1266', '459.00', '1')" VALUE="Ajout panier Canada" STYLE="border-style:ridge; border-width:1; font-family: Arial; font-size: 8pt; background-color:#435A16; color:#F0D8A0" NAME="btnajoutcart"><br>     </FONT>     <font face="Arial" size="2" color="#1D6D7E">515.00</font><font face="Arial" size="1" color="#1D6D7E"> CAD</font><font face="Arial" size="1" color="#5A7800"><br>     </font>     <FONT COLOR="#FFFFFF">     <INPUT TYPE="button"     ONCLICK="addtoBasket('UC1266eu', 'LOTR Witchking - Livraison Europe', 'UC-1266eu', '515.00', '1')" VALUE="Ajout panier (Europe)" STYLE="border-style:ridge; border-width:1; font-family: Arial; font-size: 8pt; background-color:#1D6D7E; color:#F0D8A0" NAME="btnajoutcart"></FONT></td>     <td width="7%" height="384" rowspan="16" valign="bottom">&nbsp;</td>     <td width="19%" height="175" valign="top" rowspan="5">     <img border="0" src="images/epees_lord/narsil_small.jpg" xthumbnail-orig-image="images/epees_lord/narsil.jpg" width="140" height="175"></td>     <td width="15%" height="384" valign="top" rowspan="16">     <p align="center">     <b><font face="Arial" size="2" color="#435A16">*      Narsil *</font></b><font face="Eurostile" size="4" color="#9A6A10"><br>     <a href="images/epees_lord/UC1267_p.jpg">     <img border="0" src="images/epees_lord/UC1267_narsil_small.jpg" width="80" height="342"></a></font></td>     <td width="27%" height="384" rowspan="16" valign="bottom">     <p ALIGN="center">     <A HREF="javascript:void(0)" ONCLICK="window.open('stock.htm','miniwin','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=620,height=520')">     <img border="0" src="images/stock.gif" alt="Article en stock" width="50" height="18"></a><font face="Arial" size="2" color="#435A16"><br>     459.00</font><font face="Arial" size="1" color="#435A16"> CAD</font><font face="Arial" size="1" color="#5A7800"><br>     </font>     <FONT COLOR="#FFFFFF">     <INPUT TYPE="button"     ONCLICK="addtoBasket('UC1267', 'Lord of the Ring - Narsil', 'UC-1267', '459.00', '1')" VALUE="Ajout panier Canada" STYLE="border-style:ridge; border-width:1; font-family: Arial; font-size: 8pt; background-color:#435A16; color:#F0D8A0" NAME="btnajoutcart"><br>     </FONT>     <font face="Arial" size="2" color="#1D6D7E">515.00</font><font face="Arial" size="1" color="#1D6D7E"> CAD</font><font face="Arial" size="1" color="#5A7800"><br>     </font>     <FONT COLOR="#FFFFFF">     <INPUT TYPE="button"     ONCLICK="addtoBasket('UC1267eu', 'LOTR Narsil - Livraison Europe', 'UC-1267eu', '515.00', '1')" VALUE="Ajout panier (Europe)" STYLE="border-style:ridge; border-width:1; font-family: Arial; font-size: 8pt; background-color:#1D6D7E; color:#F0D8A0" NAME="btnajoutcart"></FONT></td>   </tr>   <tr>     <td width="21%" height="20">&nbsp;</td>   </tr>   <tr>     <td width="21%" height="20">&nbsp;</td>   </tr>   <tr>     <td width="21%" height="19">&nbsp;</td>   </tr>   <tr>     <td width="21%" height="19">&nbsp;</td>   </tr>   <tr>     <td width="21%" height="19">&nbsp;</td>     <td width="19%" height="19">&nbsp;</td>   </tr>   <tr>     <td width="21%" height="19">&nbsp;</td>     <td width="19%" height="19">&nbsp;</td>   </tr>   <tr>     <td width="21%" height="19">&nbsp;</td>     <td width="19%" height="19">&nbsp;</td>   </tr>   <tr>     <td width="21%" height="19">&nbsp;</td>     <td width="19%" height="19">&nbsp;</td>   </tr>   <tr>     <td width="21%" height="19">&nbsp;</td>     <td width="19%" height="19">&nbsp;</td>   </tr>   <tr>     <td width="21%" height="19">&nbsp;</td>     <td width="19%" height="19">&nbsp;</td>   </tr>   <tr>     <td width="21%" height="19">&nbsp;</td>     <td width="19%" height="19">&nbsp;</td>   </tr>   <tr>     <td width="21%" height="19">&nbsp;</td>     <td width="19%" height="19">&nbsp;</td>   </tr>   <tr>     <td width="21%" height="19">&nbsp;</td>     <td width="19%" height="19">&nbsp;</td>   </tr>   <tr>     <td width="21%" height="19">&nbsp;</td>     <td width="19%" height="19">&nbsp;</td>   </tr>   <tr>     <td width="21%" height="19">&nbsp;</td>     <td width="19%" height="19">&nbsp;</td>   </tr>   <tr>     <td width="36%" height="19" colspan="3" rowspan="2" valign="top">     <font face="Arial" size="2" color="#9A6A10">Lame en acier tremp 420 J2<br>     Poigne acier recouvert de cuir et garde mtal patin.<br>     Plaque murale en bois<br>     </font><font face="Arial" size="2" color="#9A6A10">Longueur total 137 cm      (54-5/8&quot;) - 4.62 kg (10.2 lbs)</font></td>     <td width="7%" height="19">&nbsp;</td>     <td width="61%" height="19" colspan="3" rowspan="2" valign="top">     <font face="Arial" size="2" color="#9A6A10">Lame en acier tremp 420 J2<br>     Poigne et garde mtal patin, incrustation plaqu or 24 K.<br>     Plaque murale en bois.<br>     </font><font face="Arial" size="2" color="#9A6A10">Longueur total 134 cm      (52-7/8&quot;) - 5.45 kg (12 lbs)</font></td>   </tr>   <tr>     <td width="7%" height="19">&nbsp;</td>   </tr>   <tr>     <td width="36%" height="9" colspan="3"></td>     <td width="7%" height="19">&nbsp;</td>     <td width="61%" height="9" colspan="3"></td>   </tr> </table>  <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" height="1">   <tr>     <td width="770" height="19">     <hr ALIGN="Center" color="#845A0D" width="90%" size="1">     </td>   </tr>   </table> <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" height="781">   <tr>     <td width="100%" colspan="5" height="16" bgcolor="#800000">     <p align="center">     <font face="Arial" color="#F8C95C" size="2">Seigneur des Anneaux II</font></td>   </tr>   <tr>     <td width="100%" colspan="5" height="16">     <p align="center"><img border="0" src="images/epees_lord/lotr2.jpg" width="295" height="73"></td>   </tr>   <tr>     <td width="100%" colspan="5" height="16">     <p align="center"></td>   </tr>   <tr>     <td width="100%" height="19" colspan="5">     <p align="center" dir="ltr"><b><font face="Arial" size="2">     <font color="#435A16">- Les pes officielles  du Seigneur des Anneaux II, les deux tours -<br> Trs haute qualit.</font></font></b></td>   </tr>   <tr>     <td width="20%" height="19">&nbsp;</td>     <td width="20%" height="19">     <p align="center">&nbsp;</td>     <td width="20%" height="19">&nbsp;</td>     <td width="20%" height="19">     <p align="center">&nbsp;</td>     <td width="20%" height="19">&nbsp;</td>   </tr>   <tr>     <td width="20%" height="19">&nbsp;</td>     <td width="20%" height="19">     <p align="center"><font size="1" face="Arial">UC-1300</font></td>     <td width="20%" height="19">&nbsp;</td>     <td width="20%" height="19">     <p align="center"><font size="1" face="Arial">UC-1296</font></td>     <td width="20%" height="19">&nbsp;</td>   </tr>   <tr>     <td width="20%" valign="top" height="356" rowspan="2">     <p align="center">     <img border="0" src="images/epees_lord/frodo_small.jpg" xthumbnail-orig-image="images/epees_lord/frodo.jpg" width="105" height="195"><p align="center">     <font face="Arial" size="2" color="#9A6A10">Mtal grav et<br>     recouvrement en cuir<br>     Longueur 44 cm (17-3/8&quot;)<br> &nbsp;</font></td>     <td width="20%" valign="top" height="356" rowspan="2">     <p align="center"><b><font face="Arial" size="2" color="#435A16">*      tui Sting *</font></b><br>     <a href="images/epees_lord/uc1300.jpg">     <img border="0" src="images/epees_lord/uc1300_small.jpg" xthumbnail-orig-image="images/epees_lord/uc1300.jpg" width="63" height="200"></a><p align="center">     <A HREF="javascript:void(0)" ONCLICK="window.open('stock.htm','miniwin','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=620,height=520')">     <img border="0" src="images/stock.gif" alt="Article en stock" width="50" height="18"></a><font face="Arial" size="2" color="#435A16"><br>     135.00</font><font face="Arial" size="1" color="#435A16"> CAD<br>     </font>     <FONT COLOR="#FFFFFF">     <INPUT TYPE="button"     ONCLICK="addtoBasket('UC1300', 'LOTR Etui Sting', 'UC-1300', '135.00', '1')" VALUE="Ajout panier Canada" STYLE="border-style:ridge; border-width:1; font-family: Arial; font-size: 8pt; background-color:#435A16; color:#F0D8A0" NAME="btnajoutcart"><br>     </FONT>     <font face="Arial" size="2" color="#1D6D7E">165.00</font><font face="Arial" color="#1D6D7E" size="1">      CAD</font><font face="Arial" size="1" color="#435A16"><br>     </font>     <FONT COLOR="#FFFFFF">     <INPUT TYPE="button"     ONCLICK="addtoBasket('UC1300eu', 'LOTR Etui Sting - Livraison Europe', 'UC-1300eu', '165.00', '1')" VALUE="ajout panier (Europe)" STYLE="border-style:ridge; border-width:1; font-family: MS Sans Serif; font-size: 8pt; background-color:#1D6D7E; color:#F0D8A0; text-align:center" NAME="btnajoutcart"></FONT></td>     <td width="20%" valign="middle" height="356" rowspan="2">     <p align="center">&nbsp;</td>     <td width="20%" valign="top" height="356" rowspan="2">     <p align="center"><b><font face="Arial" size="2" color="#435A16">*      Shards of Narsil *</font></b><font face="Eurostile" size="4"><br>     <a href="images/epees_lord/broken%20narsil.jpg">     <img border="0" src="images/epees_lord/broken%20narsil_small.jpg" xthumbnail-orig-image="images/epees_lord/broken narsil.jpg" width="85" height="340"></a></font></td>     <td width="20%" valign="bottom" height="134">     <p align="center">     <img border="0" src="images/epees_lord/narsilbroken_p_small.jpg" xthumbnail-orig-image="images/epees_lord/narsilbroken_p.jpg" width="150" height="78"></td>   </tr>   <tr>     <td width="20%" height="222">     <p align="center">     <A HREF="javascript:void(0)" ONCLICK="window.open('stock.htm','miniwin','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=620,height=520')">     <img border="0" src="images/stock.gif" alt="Article en stock" width="50" height="18"></a><font face="Arial" size="2" color="#435A16"><br>     510.00</font><font face="Arial" size="1" color="#435A16"> CAD<br>     </font>     <FONT COLOR="#FFFFFF">     <INPUT TYPE="button"     ONCLICK="addtoBasket('UC1296', 'LOTR Shards of Narsil', 'UC-1296', '510.00', '1')" VALUE="Ajout panier Canada" STYLE="border-style:ridge; border-width:1; font-family: Arial; font-size: 8pt; background-color:#435A16; color:#F0D8A0" NAME="btnajoutcart"><br>     </FONT>     <font face="Arial" size="2" color="#1D6D7E">645.00</font><font face="Arial" size="1" color="#1D6D7E">      CAD</font><font face="Arial" size="1" color="#435A16"><br>     </font>     <FONT COLOR="#FFFFFF">     <INPUT TYPE="button"     ONCLICK="addtoBasket('UC1296eu', 'LOTR Shards of Narsil - Livraison Europe', 'UC-1296eu', '645.00', '1')" VALUE="ajout panier (Europe)" STYLE="border-style:ridge; border-width:1; font-family: MS Sans Serif; font-size: 8pt; background-color:#1D6D7E; color:#F0D8A0" NAME="btnajoutcart"></FONT></td>   </tr>   <tr>     <td width="53%" valign="bottom" height="1" colspan="3">     <hr ALIGN="Center" color="#845A0D" width="90%" size="1">     </td>     <td width="24%" valign="top" height="1">     <p><b><font face="Arial" size="2" color="#800000">Pice de      collection unique</font></b></td>     <td width="23%" height="1">     <p align="center"></td>   </tr>   <tr>     <td width="20%" valign="top" rowspan="5" height="173">     <p><img border="0" src="images/epees_lord/ranger_sm.jpg" width="104" height="242"><br>     <font face="Arial" size="2" color="#9A6A10">Acier tremp 420 J2<br>     Poigne et garde mtal patin, recouvert cuir.<br>     Longueur 120cm (47-1/4&quot;)<br>     Plaque murale en bois<br>     4.62 kg (10.2 lbs)</font></p>     </td>     <td width="20%" rowspan="5" height="173" valign="top">     <p align="center">     <font size="1" face="Arial">UC-1299</font><font face="Arial" size="2"><b><br>     <font color="#435A16">*      Ranger - Narsil *<br>     </font></b></font>     <a href="images/epees_lord/ranger%20sword%20-%20uc1299.jpg">     <img border="0" src="images/epees_lord/ranger%20sword%20-%20uc1299_small.jpg" xthumbnail-orig-image="images/epees_lord/ranger sword - uc1299.jpg" width="82" height="340"></a><br>     <A HREF="javascript:void(0)" ONCLICK="window.open('stock.htm','miniwin','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=620,height=520')">     <img border="0" src="images/stock.gif" alt="Article en stock" width="50" height="18"></a><font face="Arial" size="2" color="#435A16"><br>     475.00</font><font face="Arial" size="1" color="#435A16"> CAD<br>     </font>     <FONT COLOR="#FFFFFF">     <INPUT TYPE="button"     ONCLICK="addtoBasket('UC1299', 'LOTR Ranger', 'UC-1299', '475.00', '1')" VALUE="Ajout panier Canada" STYLE="border-style:ridge; border-width:1; font-family: Arial; font-size: 8pt; background-color:#435A16; color:#F0D8A0" NAME="btnajoutcart"><br>     </FONT>     <font face="Arial" size="2" color="#1D6D7E">545.00</font><font face="Arial" size="1" color="#1D6D7E">      CAD</font><font face="Arial" size="1" color="#435A16"><br>     </font>     <FONT COLOR="#FFFFFF">     <INPUT TYPE="button"     ONCLICK="addtoBasket('UC1299eu', 'LOTR Ranger - Livraison Europe', 'UC-1299eu', '545.00', '1')" VALUE="ajout panier (Europe)" STYLE="border-style:ridge; border-width:1; font-family: MS Sans Serif; font-size: 8pt; background-color:#1D6D7E; color:#F0D8A0" NAME="btnajoutcart"></FONT></p>     </td>     <td width="13%" rowspan="5" height="173" valign="top">&nbsp;<p>&nbsp;</td>     <td width="47%" colspan="2" valign="top" height="112">     <font face="Arial" size="2" color="#9A6A10">Lame en acier tremp 420 J2<br>     Poigne et garde mtal patin,<br>     incrustation plaqu Or 24 K.<br>     Longueur total 134 cm (52-7/8&quot;)<br>     Ensemble lourd     10.45 kg (23 lbs)<br>     Plaque murale en bois 119cm (47&quot;)<br>     Partie du haut de l'pe amovible, lame bris fixe.<br>     </font>     <font face="Arial" size="2" color="#435A16">Certificat d'authenticit et un autographi par l'artiste.</font><font face="Arial" size="2" color="#9A6A10"><br>     </font><b>     <font face="Arial" size="2" color="#435A16">Numrot individuellement.</font><font face="Arial" size="2" color="#9A6A10"><br>     </font>     <font face="Arial" size="2" color="#800000">Fabriqu sur une quantit limit       5000.</font></b></td>   </tr>   <tr>     <td width="24%" valign="top" height="19">     <p align="center">&nbsp;</td>     <td width="23%" valign="top" height="19">     <p align="center">&nbsp;</td>   </tr>   <tr>     <td width="47%" valign="top" height="19" colspan="2">     <hr ALIGN="Center" color="#845A0D" width="90%" size="1">     </td>   </tr>   <tr>     <td width="24%" valign="top" height="12">     <p align="center"><font size="1" face="Arial">UC-1298</font><font face="Arial" size="2"><b><br>     <font color="#435A16">*      Arwen *</font></b></font><br>     <img border="0" src="images/epees_lord/uc1298arwen2_small.jpg" xthumbnail-orig-image="images/epees_lord/uc1298arwen2.jpg" width="140" height="179"></p>     </td>     <td width="23%" height="48">     <p>     <b><font face="Arial"><font size="2" color="#435A16">Certificat      d'authenticit<br>     Lame aiguise</font><font size="2" color="#800000"><br>     Disponible aprs les ftes</font></font></b><font face="Arial" size="2" color="#9A6A10"><br>     <br>     Acier tremp 420 J2<br>     Poigne et garde mtal<br>     Pommeau bois et runes graves.<br>     Longueur 96.5cm (38&quot;)<br>     4.62 kg (10.2 lbs)<br>     Support en bois inclus</font></td>   </tr>   <tr>     <td width="47%" valign="top" height="11" colspan="2">     <br>     <a href="images/epees_lord/uc1298.jpg">     <img border="0" src="images/epees_lord/uc1298_small.jpg" xthumbnail-orig-image="images/epees_lord/uc1298.jpg" width="300" height="57"></a></td>   </tr>   <tr>     <td width="60%" height="19" colspan="3" valign="middle">     <hr ALIGN="Center" color="#845A0D" width="90%" size="1">     </td>     <td width="40%" align="center" height="19" colspan="2">     <p align="center">     <A HREF="javascript:void(0)" ONCLICK="window.open('stock.htm','miniwin','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=620,height=520')">     <img border="0" src="images/stock.gif" alt="Article en stock" width="50" height="18"></a><font face="Arial" size="2" color="#435A16"><br>     439.00</font><font face="Arial" size="1" color="#435A16"> CAD<br>     </font>     <FONT COLOR="#FFFFFF">     <INPUT TYPE="button"     ONCLICK="addtoBasket('UC1298', 'LOTR Arwen', 'UC-1298', '439.00', '1')" VALUE="Ajout panier Canada" STYLE="border-style:ridge; border-width:1; font-family: Arial; font-size: 8pt; background-color:#435A16; color:#F0D8A0" NAME="btnajoutcart"><br>     </FONT>     <font face="Arial" size="2" color="#1D6D7E">499.00</font><font face="Arial" size="1" color="#1D6D7E">      CAD</font><font face="Arial" size="1" color="#435A16"><br>     </font>     <FONT COLOR="#FFFFFF">     <INPUT TYPE="button"     ONCLICK="addtoBasket('UC1298eu', 'LOTR Arwen - Livraison Europe', 'UC-1298eu', '499.00', '1')" VALUE="ajout panier (Europe)" STYLE="border-style:ridge; border-width:1; font-family: MS Sans Serif; font-size: 8pt; background-color:#1D6D7E; color:#F0D8A0" NAME="btnajoutcart"></FONT></td>   </tr>   <tr>     <td width="20%" height="117" rowspan="3">     <p align="center"><font size="1" face="Arial">UC-1278</font><font face="Arial" size="2"><b><br>     <font color="#435A16">*      Ringwraiths *</font></b></font><br>     <a href="images/epees_lord/ringwraithsword-uc1278.jpg">     <img border="0" src="images/epees_lord/ringwraithsword-uc1278_small.jpg" xthumbnail-orig-image="images/epees_lord/ringwraithsword-uc1278.jpg" width="140" height="230"></a></td>     <td width="20%" height="117" rowspan="3">     <p align="center">     <font size="1" face="Arial">pe Chevalier Noir - Nazgul</font><br>     <img border="0" src="images/epees_lord/lotrringwraiths_small.jpg" xthumbnail-orig-image="images/epees_lord/lotrringwraiths.jpg" width="145" height="178"><font face="Arial" size="2" color="#9A6A10"><br>     &nbsp;</font></td>     <td width="20%" height="117" rowspan="3">     <p align="center">&nbsp;</td>     <td width="40%" align="center" height="19" colspan="2">     <hr ALIGN="Center" color="#845A0D" width="90%" size="1">     </td>   </tr>   <tr>     <td width="20%" valign="middle" height="123">     <p align="center"><font size="1" face="Arial">UC-1309</font><font face="Arial" size="2"><b><br>     <font color="#435A16">*      Scimitar *</font><br>     </b></font>     <img border="0" src="images/epees_lord/uruk%20hai%20scimitar_small.jpg" xthumbnail-orig-image="images/epees_lord/uruk hai scimitar.jpg" width="140" height="103"></p>     <p align="center"><font face="Arial" size="2" color="#9A6A10">Lame acier tremp au carbone.</font></p>     </td>     <td width="20%" height="123">     <p>&nbsp;</td>   </tr>   <tr>     <td width="20%" valign="middle" height="1">     <p align="center"><a href="images/epees_lord/UC1309.jpg">     <img border="0" src="images/epees_lord/UC1309_small.gif" xthumbnail-orig-image="images/epees_lord/UC1309.jpg" width="180" height="72"></a></td>     <td width="20%" height="1">     <p align="center">     </td>   </tr>   <tr>     <td width="20%" height="35">     <p align="center">     <A HREF="javascript:void(0)" ONCLICK="window.open('stock.htm','miniwin','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=620,height=520')">     <img border="0" src="images/stock.gif" alt="Article en stock" width="50" height="18"></a><font face="Arial" size="2" color="#435A16"><br>     475.00</font><font face="Arial" size="1" color="#435A16"> CAD<br>     </font>     <FONT COLOR="#FFFFFF">     <INPUT TYPE="button"     ONCLICK="addtoBasket('UC1278', 'LOTR Ringwraiths', 'UC-1278', '475.00', '1')" VALUE="Ajout panier Canada" STYLE="border-style:ridge; border-width:1; font-family: Arial; font-size: 8pt; background-color:#435A16; color:#F0D8A0" NAME="btnajoutcart"><br>     </FONT>     <font face="Arial" size="2" color="#1D6D7E">545.00</font><font face="Arial" size="1" color="#1D6D7E">      CAD</font><font face="Arial" size="1" color="#435A16"><br>     </font>     <FONT COLOR="#FFFFFF">     <INPUT TYPE="button"     ONCLICK="addtoBasket('UC1278eu', 'LOTR Ringwraiths - Livraison Europe', 'UC-1278eu', '545.00', '1')" VALUE="ajout panier (Europe)" STYLE="border-style:ridge; border-width:1; font-family: MS Sans Serif; font-size: 8pt; background-color:#1D6D7E; color:#F0D8A0" NAME="btnajoutcart"></FONT></td>     <td width="20%" valign="middle" height="35">     <p align="center"><font face="Arial" size="2" color="#9A6A10">Acier tremp 420 J2<br>     Poigne et garde mtal,<br>     recouvert cuir.<br>     Longueur 135cm (53&quot;)<br>     Plaque murale en bois<br>     4.62 kg (10.2 lbs)</font></td>     <td width="20%" height="35">     <p>&nbsp;</td>     <td width="20%" height="35">     <p align="center">     <A HREF="javascript:void(0)" ONCLICK="window.open('stock.htm','miniwin','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=620,height=520')">     <img border="0" src="images/stockencours.gif" alt="Article en cours de stockage" width="101" height="18"></a><font face="Arial" size="2" color="#435A16"><br>     245.00</font><font face="Arial" size="1" color="#435A16"> CAD<br>     </font>     <FONT COLOR="#FFFFFF">     <INPUT TYPE="button"     ONCLICK="addtoBasket('UC1309', 'LOTR Scimitar', 'UC-1309', '245.00', '1')" VALUE="Ajout panier Canada" STYLE="border-style:ridge; border-width:1; font-family: Arial; font-size: 8pt; background-color:#435A16; color:#F0D8A0" NAME="btnajoutcart"><br>     </FONT>     <font face="Arial" size="2" color="#1D6D7E">305.00</font><font face="Arial" size="1" color="#1D6D7E">      CAD</font><font face="Arial" size="1" color="#435A16"><br>     </font>     <FONT COLOR="#FFFFFF">     <INPUT TYPE="button"     ONCLICK="addtoBasket('UC1309eu', 'LOTR Scimitar - Livraison Europe', 'UC-1309eu', '305.00', '1')" VALUE="ajout panier (Europe)" STYLE="border-style:ridge; border-width:1; font-family: MS Sans Serif; font-size: 8pt; background-color:#1D6D7E; color:#F0D8A0" NAME="btnajoutcart"></FONT></td>     <td width="20%" height="35">     <p align="center"><font face="Arial" size="2" color="#9A6A10">Poigne bois lamin, recouvert cuir vritable.<br>     Longueur 81cm (32&quot;)<br>     Plaque murale en bois<br>     4.54 kg (10 lbs)</font></td>   </tr>   <tr>     <td width="20%" valign="top" height="19">     <p align="center">&nbsp;</td>     <td width="20%" height="19">     <p align="center">     &nbsp;</td>     <td width="20%" height="19">&nbsp;</td>     <td width="20%" height="19">&nbsp;</td>     <td width="20%" height="19">&nbsp;</td>   </tr>   <tr>     <td width="20%" height="19">&nbsp;</td>     <td width="20%" height="19">&nbsp;</td>     <td width="20%" height="19">&nbsp;</td>     <td width="20%" height="19">&nbsp;</td>     <td width="20%" height="19">&nbsp;</td>   </tr> </table>  <hr color="#824B00" width="90%" size="1">  <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" STYLE="border-collapse: collapse" BORDERCOLOR="#111111" WIDTH="100%"> 	<TR> 		<TD WIDTH="50%"><BASKET> <a target="_blank" href="https://www.internetsecure.com/cgi-bin/certified.mhtml?merchant_number=5130&language=FR"> <IMG ALIGN=center SRC="images/ismer-fr.gif" BORDER=0 width="134" height="33"></a></BASKET></TD> 		<TD WIDTH="50%"><P ALIGN="right"> <img border="0" src="images/amex_small.gif" xthumbnail-orig-image="images/amex.gif" width="40" height="26"> <img border="0" src="images/discover_small.gif" xthumbnail-orig-image="images/discover.gif" width="40" height="25"> <img border="0" src="images/visa_small.gif" xthumbnail-orig-image="images/visa.gif" width="40" height="25">           <img border="0" src="images/master_small.gif" width="40" height="24">  <IMG BORDER="0" SRC="images/lockit_03_small2.jpg" XTHUMBNAIL-ORIG-IMAGE="images/lockit_03.jpg" width="40" height="28"></TD> 	</TR> 	<TR> 		<TD WIDTH="50%">&nbsp;</TD> 		<TD WIDTH="50%">&nbsp;</TD> 	</TR> </TABLE>  </body>  </html> 
