<!--Begin Template: header --> <!-- DO NOT REMOVE THESE HEADERS-->   <!-- Powered by XMB 1.8 Partagium Final Beta (Build ID: 2002122814) -->  <!-- Build: 2002122814 -->  <!-- Aventure Media & The XMB Group -->  <!-- www.aventure-media.co.uk : www.xmbforum.com -->   <!-- DO NOT REMOVE THESE HEADERS-->  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">  <html>  <head>  <!--Begin Template: css -->    <style type="text/css">   body { scrollbar-base-color: #999999; scrollbar-arrow-color: #666666; }   a { color: #FFFFFF; text-decoration: none; }   a:hover { text-decoration: underline; }   .subject { font-size: 12px; font-family: Verdana; font-weight: bold; }   .post { font-size: 14px; font-weight: normal; font-family: Verdana; }   .header { color: #FFFFFF; background-color: #666666; font-family: Verdana; font-weight: bold; font-size: 10px; }   .header2 { background-color: #999999; font-family: Verdana; font-weight: bold; font-size: 11px; }   .category { background-color: bluebar.gif; font-family: Verdana; font-size: 12px; }   .tablerow { font-family: Verdana; color: #FFFFFF; font-size: 12px; }   .nav { font-family: Verdana; font-weight: bold; font-size: 12px; }   .smalltxt { font-size: 11px; font-family: Verdana; }   .mediumtxt { font-size: 12px; font-family: Verdana; font-weight: normal; color: #FFFFFF; }   .navtd { font-size: 11px; font-family: Verdana; color: #FFFFFF; background-color: #666666; text-decoration: none; }   .multi { font-family: verdana; font-size: 11px; }   textarea, select, input, object { font-family: Verdana, arial, helvetica, sans-serif; font-size: 12px; font-weight: normal; background-color: #999999; color: #FFFFFF; } </style>    <!-- End Template: css -->  <script language="JavaScript">  function Popup(url, window_name, window_width, window_height)  { settings=  "toolbar=no,location=no,directories=no,"+  "status=no,menubar=no,scrollbars=yes,"+  "resizable=yes,width="+window_width+",height="+window_height;    NewWindow=window.open(url,window_name,settings); }    function icon(theicon) {  document.input.message.value += theicon;  document.input.message.focus();  }  </script>  <!--Begin Template: functions_bbcode -->    <script language="JavaScript"> defmode = "normalmode"; // default mode. either normalmode, advmode, or helpmode   if (defmode == "advmode") {         helpmode = false;         normalmode = false;         advmode = true; } else if (defmode == "helpmode") {         helpmode = true;         normalmode = false;         advmode = false; } else {         helpmode = false;         normalmode = true;         advmode = false; } function chmode(swtch){         if (swtch == 1){                 advmode = false;                 normalmode = false;                 helpmode = true;                 alert("Help Mode\nClick on any of the formatting buttons for a description and instructions.");         } else if (swtch == 0) {                 helpmode = false;                 normalmode = false;                 advmode = true;                 alert("Advanced Mode\nThe BB Code will be inserted without options as soon as you hit the button.");         } else if (swtch == 2) {                 helpmode = false;                 advmode = false;                 normalmode = true;                 alert("Normal Mode\nPopups will bring you step by step through the process of inserting BB Code.");         } }   function AddText(NewCode) {         if(document.all){         insertAtCaret(document.input.message,NewCode);         setfocus();         }else{         document.input.message.value+=NewCode;         setfocus();         } } function storeCaret (textEl){         if(textEl.createTextRange){                 textEl.caretPos = document.selection.createRange().duplicate();         } }   function insertAtCaret (textEl, text){         if (textEl.createTextRange && textEl.caretPos){                 var caretPos = textEl.caretPos;                 caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? text + ' ' : text;         }else{                 textEl.value  = text;         } }   function email() {         if (helpmode) {                 alert("Email Tag\nTurns an email address into a mailto hyperlink.\nUsage: [email]someone@anywhere.com[/email]\nUsage: [email=someone@anywhere.com]link text[/email]");         } else if (advmode) {                 AddTxt="[email] [/email]";                 AddText(AddTxt);         } else {                 txt2=prompt("What name should be shown\nIf this field is empty the email address will be visible","");                 if (txt2!=null) {                         txt=prompt("Please enter an email address.","name@domain.com");                         if (txt!=null) {                                 if (txt2=="") {                                         AddTxt="[email]"+txt+"[/email]";                                  } else {                                         AddTxt="[email="+txt+"]"+txt2+"[/email]";                                 }                                 AddText(AddTxt);                         }                 }         } }    function chsize(size) {         if (helpmode) {                 alert("0");         } else if (advmode) {                 AddTxt="[size="+size+"] [/size]";                 AddText(AddTxt);         } else {                 txt=prompt("Please enter the text to be size  "+size,"Text");                 if (txt!=null) {                         AddTxt="[size="+size+"]"+txt+"[/size]";                         AddText(AddTxt);                 }         } }   function chfont(font) {         if (helpmode){                 alert("Font Tag\nSets the font face for the enclosed text.\nUsage: [font="+font+"]The font of this text is");         } else if (advmode) {                 AddTxt="[font="+font+"] [/font]";                 AddText(AddTxt);         } else {                 txt=prompt("Please enter the text to be in  "+font,"Text");                 if (txt!=null) {                         AddTxt="[font="+font+"]"+txt+"[/font]";                         AddText(AddTxt);                 }         } }    function bold() {         if (helpmode) {                 alert("Bold Tag\nMakes the enlosed text bold.\nUsage: [b]This is some bold text[/b]");         } else if (advmode) {                 AddTxt="[b] [/b]";                 AddText(AddTxt);         } else {                 txt=prompt("Please enter the text that should be bolded.","Text");                 if (txt!=null) {                         AddTxt="[b]"+txt+"[/b]";                         AddText(AddTxt);                 }         } }   function italicize() {         if (helpmode) {                 alert("Italicize Tag\nMakes the enlosed text italicized.\nUsage: [i]This is some italicized text[/i]");         } else if (advmode) {                 AddTxt="[i] [/i]";                 AddText(AddTxt);         } else {                 txt=prompt("Please enter the text that should be italicized.","Text");                 if (txt!=null) {                         AddTxt="[i]"+txt+"[/i]";                         AddText(AddTxt);                 }         } }   function quote() {         if (helpmode){                 alert("Quote tag\nQuotes the enclosed text to reference something specific that someone has posted.\nUsage: [quote]This is a quote[/quote]");         } else if (advmode) {                 AddTxt="\r[quote]\r[/quote]";                 AddText(AddTxt);         } else {                 txt=prompt("Please enter the text you want quoted.","Text");                 if(txt!=null) {                         AddTxt="\r[quote]\r"+txt+"\r[/quote]";                         AddText(AddTxt);                 }         } }   function chcolor(color) {         if (helpmode) {                 alert("Color Tag\nSets the text color.  Any named color can be used.\nUsage: [color="+color+"]This is some "+color+" text[/color]");         } else if (advmode) {                 AddTxt="[color="+color+"] [/color]";                 AddText(AddTxt);         } else {         txt=prompt("Please enter the text that should be "+color,"Text "+color,"Text");                 if(txt!=null) {                         AddTxt="[color="+color+"]"+txt+"[/color]";                         AddText(AddTxt);                 }         } }   function center() {         if (helpmode) {                 alert("Centered tag\nCenters the enclosed text.\nUsage: [align=center]This text is centered[/align]");         } else if (advmode) {                 AddTxt="[align=center] [/align]";                 AddText(AddTxt);         } else {                 txt=prompt("Please enter the text that should be centered.","Text");                 if (txt!=null) {                         AddTxt="\r[align=center]"+txt+"[/align]";                         AddText(AddTxt);                 }         } }   function hyperlink() {         if (helpmode) {                 alert("Hyperlink Tag\nTurns an url into a hyperlink.\nUsage: [url]http://www.anywhere.com[/url]\nUsage: [url=http://www.anywhere.com]link text[/url]");         } else if (advmode) {                 AddTxt="[url] [/url]";                 AddText(AddTxt);         } else {                 txt2=prompt("What name should be shown?\nIf this Field is blank the URL would be visible","");                 if (txt2!=null) {                         txt=prompt("Please enter the url for the hyperlink.","http://");                         if (txt!=null) {                                 if (txt2=="") {                                         AddTxt="[url]"+txt+"[/url]";                                         AddText(AddTxt);                                 } else {                                         AddTxt="[url="+txt+"]"+txt2+"[/url]";                                         AddText(AddTxt);                                 }                         }                 }         } }   function image() {         if (helpmode){                 alert("Image Tag\nInserts an image into the post.\nUsage: [img]http:\www.anywhere.comimage.gif[/img]");         } else if (advmode) {                 AddTxt="[img] [/img]";                 AddText(AddTxt);         } else {                 txt=prompt("Please enter the URL to the image you wish to insert.","http://");                 if(txt!=null) {                         AddTxt="\r[img]"+txt+"[/img]";                         AddText(AddTxt);                 }         } }   function code() {         if (helpmode) {                 alert("Code Tag\nBlockquotes the text you reference and preserves the formatting.\nUsefull for posting code.\nUsage: [code]This is formated text[/code]");         } else if (advmode) {                 AddTxt="\r[code]\r[/code]";                 AddText(AddTxt);         } else {                 txt=prompt("Please enter the text you wanted blockquoted.","");                 if (txt!=null) {                         AddTxt="\r[code]"+txt+"[/code]";                         AddText(AddTxt);                 }         } }   function list() {         if (helpmode) {                 alert("List Tag\nBuilds a bulleted, numbered, or alphabetical list.\nUsage: [list]\n[*]item1\n[*]item2\n[*]item3\n[/list]");         } else if (advmode) {                 AddTxt="\r[list]\r[*]\r[*]\r[*]\r[/list]";                 AddText(AddTxt);         } else {                   txtstart=prompt("Please select your list type\n ('A' for aplhabetic, '1' for nummeric) You can leave this field blank","");                                while ((txtstart!="") && (txtstart!="A") && (txtstart!="a") && (txtstart!="1") && (txtstart!=null)) {                         txtstart=prompt("ERROR!\nThe only possible values for type of list are blank 'A' and '1'.","");                                }                 if (txtstart!=null) {                         if (txtstart=="") {                                 AddTxt="\r[list]\r\n";                         } else {                                 AddTxt="\r[list="+txtstart+"]\r";                         }                          txtend="1";                         while ((txtend!="") && (txtend!=null)) {                                 txtend=prompt("List Item:\nLeave it blank to End the List","");                                  if (txtend!="") {                                                      AddTxt+="[*]"+txtend+"\r";                                  }                                            }                         if (txtstart=="") {                                 AddTxt+="[/list]\r\n";                         } else {                                 AddTxt+="[/list="+txtstart+"]\r";                         }                          AddText(AddTxt);                  }         } }  function underline() {         if (helpmode) {                 alert("Underline Tag\nUnderlines the enclosed text.\nUsage: [u]This text is underlined[/u]");         } else if (advmode) {                 AddTxt="[u] [/u]";                 AddText(AddTxt);         } else {                 txt=prompt("Please enter the text that should be underlined.","Text");                 if (txt!=null) {                         AddTxt="[u]"+txt+"[/u]";                         AddText(AddTxt);                 }         } }   function setfocus() {         document.input.message.focus(); } </script>    <!-- End Template: functions_bbcode -->  <title>Palenthen - Bienvenue  tous!!!!</title>  </head>  <body background="images/rock/background.gif" text="#FFFFFF">    <table cellspacing="0" cellpadding="0" border="0" width="90%" align="center">  <tr><td bgcolor="#000000">    <table border="0" cellspacing="1" cellpadding="6" width="100%">  <tr><td width="74%" bgcolor="#666666">  <table border="0" width="100%" cellpadding="0" cellspacing="0">  <tr><td align="center" valign="top" rowspan="2"><a href="index.php"><img src="images/rock/xmbheader.gif" alt="Palenthen" border="0" /></a><br /></td> <td align="right" valign="bottom"><font class="smalltxt"></font></tr>  <tr> <td align="center" valign="bottom"><font class="smalltxt">Not logged in [<a href="misc.php?action=login">Login</a> - <a href="member.php?action=reg">Register</a>]</font></td></tr></table>  </td></tr>    <tr><td class="navtd"> <table width="100%" cellpadding="0" cellspacing="0"><tr><td align="center"  class="navtd"><b><a href="misc.php?action=list"><font class="navtd">Member List</a> |</font> <a href="misc.php?action=search"><font class="navtd">Search</a> |</font> <a href="faq.php"><font class="navtd">FAQ</a> |</font> <a href="today.php"><font class="navtd">Today's Posts</a> |</font> <a href="stats.php?action=view"><font class="navtd">Stats</a></font> </b></td></tr> </table>  </td></tr></table>    </td></tr></table>    <table cellspacing="0" cellpadding="1" border="0" width="90%" align="center">  <tr>  <td>  <table width="100%" cellspacing="0" cellpadding="2" border="0" align="center">  <tr>  <td class="nav">&nbsp;<a href="index.php">Palenthen</a> &raquo; <a href="forumdisplay.php?fid=19"> Vos personnages</a> &raquo; Aldyel, Elfe druide  </td>  <td align="right">  <a href="#bottom"><img src="images/rock/arrow_dw.gif" border="0" /></a>  </td>  </tr>  </table>  </td>  </tr>  </table><br /><br /> <!-- End Template: header --><!--Begin Template: viewthread -->     <table width="90%" cellspacing="0" cellpadding="0" align="center"> <tr> <td class="multi"><font class="smalltxt"> <a href="viewthread.php?fid=19&tid=12&action=printable">Printable Version</a> | <a href="emailfriend.php?tid=12">Send to Friend</a><br /> <a href="memcp.php?action=subscriptions&subadd=12">Subscribe</a> | <a href="memcp.php?action=favorites&favadd=12">Add to Favorites</a></span><br /> </td> <td class="post" align="right" valign="bottom"> <!--Begin Template: viewthread_newtopic -->    <a href="post.php?action=newthread&fid=19"><img src="images/rock/newtopic.gif" border="0" /></a>    <!-- End Template: viewthread_newtopic --><!--Begin Template: viewthread_newpoll -->    <a href="post.php?action=newthread&fid=19&poll=yes"><img src="images/rock/poll.gif" border="0" /></a>    <!-- End Template: viewthread_newpoll --><!--Begin Template: viewthread_reply -->    <a href="post.php?action=reply&fid=19&tid=12"><img src="images/rock/reply.gif"  border="0" /></a>    <!-- End Template: viewthread_reply --> </td></tr></table>   <table cellspacing="0" cellpadding="0" border="0" width="90%" align="center"> <tr><td bgcolor="#000000">   <table border="0" cellspacing="1" cellpadding="4" width="100%"> <tr> <td width="18%" class="header">Author: </td> <td class="header">Subject: Aldyel, Elfe druide</td> </tr> <!--Begin Template: viewthread_post -->    <tr bgcolor="#666666"> <td rowspan="3" valign="top" class="tablerow" width="18%"><font class="mediumtxt"><b>Aldyel</b></font><br /> <div class="smalltxt"><a name="pid25">Administrator<br /><img src="images/rock/star.gif" /><img src="images/rock/star.gif" /><img src="images/rock/star.gif" /><img src="images/rock/star.gif" /><img src="images/rock/star.gif" /><img src="images/rock/star.gif" /><img src="images/rock/star.gif" /><img src="images/rock/star.gif" /><br /><br /><center><img src="http://membres.lycos.fr/mylensart/avatar/femmes/Lumya%20.jpg" /><br /><br /></center><br /><br />Posts 35<br /> Registered 18-1-2003<br />Location dans tes penses<br />Member Is Offline<br /><br /><b>Mood:</b> fratatatatapouette</div><br /></td> <td valign="top" class="smalltext" class="tablerow" width="82%"><table border="0" cellspacing="0" cellpadding="0" width="100%"><tr><td class="smalltxt" align="left">   posted on 28-1-2003 at 02:49 AM</td><td class="smalltxt" align="right"><!--Begin Template: viewthread_post_edit -->    <a href="post.php?action=edit&fid=19&tid=12&pid=25"><img src="images/rock/edit.gif" border="0" alt="Edit Post" /></a>    <!-- End Template: viewthread_post_edit --><!--Begin Template: viewthread_post_repquote -->    <a href="post.php?action=reply&fid=19&tid=12&repquote=25"><img src="images/rock/quote.gif" border="0" alt="Reply With Quote" /></a>    <!-- End Template: viewthread_post_repquote --></td></tr></table></td></tr> <tr bgcolor="#666666"><td height="120" valign="top"><font class="subject"><b>Aldyel, Elfe druide<br /><br /></b></font><font class="mediumtxt">Nom: Aldyel Myral <br /> race: Elfe <br /> classe : Druide <br /> Dieux: Luvalin <br /> Niveau: 1 <br />  <br /> ge: 144 <br /> Sexe: Fminin <br /> Descriptions Physique: Sa peu est dor part le soleil. Elle a les cheveux brun et les yeux aussi vert que les arbres des forets. Elle est grande et mince. <br />  <br /> PV:  <br /> CA:  <br />  <br /> force: 13 <br /> Dextrit: 13 <br /> Constitution: 12 <br /> Intelligence: 13 <br /> Sagesse: 13 <br /> Charisme: 13 <br />  <br /> Armes et armures: Elle porte une pe courte. Son habit est principalement formee de peau d&#039;animaux. <br />  <br /> quipement: un sac a dos, une gourde d&#039;eau faite en cuir. Baton de marche. <br />  <br /> BG: <br />  <br /> Je suis une elfe de la rgion. Je suis n ici meme. Ma mre tait une Tisseranne qui travaillais juste a cote de la Taverne du Souallon. Quand je fus asser grande pour partir de la maison, je pris mes bagages et je partis. En chemain vers l&#039;incunnue, je rencontrer une druide qui m&#039;enseigna tout ce que je sais aujourd&#039;hui. Je me fit d&#039;elle une amie. <br /> Je restais plus de 20 ans dans la foret a vivre pres de la nature. Puis,  144 ans, je dcidai de revenir chez moi. Pres de tout ceux que je connaissais. <br />  <br />  <br /> (le Bg sera retravailler)<br /> <br /> [Edited on 29-1-2003 by Aldyel]<!--Begin Template: viewthread_post_sig -->    <br /><br /><br /><br /><br /><hr color="bluebar.gif">Jusqu&#039; la fin des jours <br /> <img src="http://www.role-expert.com/palenthen/images/aldyel.gif" border=0 />    <!-- End Template: viewthread_post_sig --></font><br /></td></tr> <tr bgcolor="#666666"><td valign="top" class="tablerow"> <table border="0" cellspacing="0" cellpadding="0" align="left"><tr><td class="smalltxt"><!--Begin Template: viewthread_post_profile -->    <a href="member.php?action=viewpro&member=Aldyel"><img src="images/rock/profile.gif" border="0" alt="View User's Profile" /></a>    <!-- End Template: viewthread_post_profile --><!--Begin Template: viewthread_post_search -->    <a href="misc.php?action=search&srchuname=Aldyel&searchsubmit=a&srchfid=all&srchfrom=0"><img src="images/rock/find.gif" border="0" alt="View All Posts By User" /></a>    <!-- End Template: viewthread_post_search --><!--Begin Template: viewthread_post_u2u -->    <a href="#" onclick="Popup('u2u.php?action=send&username=Aldyel', 'Window', 600, 500);"><img src="images/rock/u2u.gif" border="0" alt="U2U Member" /></a>    <!-- End Template: viewthread_post_u2u --><!--Begin Template: viewthread_post_icq -->    &nbsp;&nbsp;<a href=http://wwp.icq.com/scripts/search.dll?to=159391514><img src="http://web.icq.com/whitepages/online?icq=159391514&img=5" alt="Aldyel 's ICQ status" BORDER="0" /></a>    <!-- End Template: viewthread_post_icq --><!--Begin Template: viewthread_post_msn -->    <a href="member.php?action=viewpro&member=Aldyel"><img src="images/rock/msn.gif" border="0" alt="This User Has MSN Messenger" /></a>    <!-- End Template: viewthread_post_msn --></td></tr></table> <table border="0" cellspacing="0" cellpadding="0" align="right"><tr><td></td></tr></table> </td></tr></a>    <!-- End Template: viewthread_post --> </table> </td></tr></table>   <table width="90%" cellspacing="0" cellpadding="0" align="center"> <tr> <td class="multi" valign="top"></td> <td class="post" align="right"><br /> <!--Begin Template: viewthread_newtopic -->    <a href="post.php?action=newthread&fid=19"><img src="images/rock/newtopic.gif" border="0" /></a>    <!-- End Template: viewthread_newtopic --><!--Begin Template: viewthread_newpoll -->    <a href="post.php?action=newthread&fid=19&poll=yes"><img src="images/rock/poll.gif" border="0" /></a>    <!-- End Template: viewthread_newpoll --><!--Begin Template: viewthread_reply -->    <a href="post.php?action=reply&fid=19&tid=12"><img src="images/rock/reply.gif"  border="0" /></a>    <!-- End Template: viewthread_reply --> </td> </tr> <tr><td colspan="2"></td></tr> </table>    <!-- End Template: viewthread --><!--Begin Template: footer -->    <br /> <! -- EDITING THE COPYRIGHT ON THIS TEMPLATE IS AGAINST THE LICENSE AGREEMENT AND IS AGAINST INTERNATIONAL COPYRIGHT LAW YOU CAN BE PROSECUTED FOR EDITING THE NOTICE - ALL LINKS NAMES AND COPYRIGHT MUST NOT BE TOUCHED WITHOUT PERMISSION -->   <br /> <table cellspacing="0" cellpadding="1" border="0" width="90%" align="center" bgcolor="#999999">   <tr>       <td>             <table width="100%" cellspacing="0"  cellpadding="2">                    <tr>                         <td class="nav" bgcolor="#999999">&nbsp;<a href="index.php">Palenthen</a> &raquo; <a href="forumdisplay.php?fid=19"> Vos personnages</a> &raquo; Aldyel, Elfe druide                         </td>                         <td align="right" bgcolor="#999999"> <a href="#top"><img src="images/rock/arrow_up.gif" border="0" /></a>                        </td>                   </tr>            </table>        </td>    </tr> </table> <br /> <table align="center"><tr> <td align="center"><br /> <!-- Start Copyright -->  <!-- Copyright Warning Notice Start -->  <! -- EDITING THE COPYRIGHT ON THIS TEMPLATE IS AGAINST THE LICENSE AGREEMENT AND IS AGAINST INTERNATIONAL COPYRIGHT LAW YOU CAN BE PROSECUTED FOR EDITING THE NOTICE - ALL LINKS NAMES AND COPYRIGHT MUST NOT BE TOUCHED WITHOUT PERMISSION -->   <!-- Copyright Warning Notice End -->  <font style="font-size: 10px; font-family: Verdana"> Powered by XMB 1.8 Partagium Final Beta (Build ID: 2002122814)<br /></b> Developed By <a href="http://www.aventuremedia.com" target="blank">Aventure Media</a> & <a href="http://www.xmbforum.com" target=blank>The XMB Group</a>  2002 <br>Ghil Vertefeuille  2003 <br>Palenthen  2003<br /> <font style="font-size: 11px; font-family: arial, verdana">Processed in 0.6292020 seconds, 21 queries<br /><br /> </font><br /> </td></tr></table> <a name=bottom> </body></html>    <!-- End Template: footer --> 
