#abbc3posttable {
border: 1px solid #C0C0C0;
border-collapse: collapse;
vertical-align: top;
}
line-height: normal;
Statistiques: Posté par Geronimo — Sam 30 Nov 2013 22:05
Statistiques: Posté par Champoad — Sam 30 Nov 2013 15:19
Statistiques: Posté par darky — Sam 30 Nov 2013 14:35
Statistiques: Posté par darky — Sam 30 Nov 2013 14:33
Nous avons posté 918 messages répartis dans 129 sujets
51 membres nous ont rejoint. L’utilisateur enregistré le plus récent est Köln
Total de BowserMoney sur le compte courant : 1 883.00 BowserMoney • Comptes en Banque : 3 • Total en Banque : 138.00 BowserMoney • Prochain tirage de la Loterie : 30 Nov 2013, 09:53
Tic-Tac-Toc (530.00 BowserMoney) • Champoad (372.00 BowserMoney) • Boo (315.00 BowserMoney) • MasterofShadow (70.00 BowserMoney) • Toad52 (41.00 BowserMoney)
Statistiques: Posté par Champoad — Sam 30 Nov 2013 09:47
Statistiques: Posté par Geronimo — Jeu 28 Nov 2013 20:58
Statistiques: Posté par Geronimo — Sam 23 Nov 2013 05:26
Statistiques: Posté par darky — Ven 22 Nov 2013 16:31
<div id="format-buttons">
<!-- MOD : MSSTI ABBC3 (v3.0.13) - Start //-->
<script type="text/javascript" src="./adm/style/tooltip.js"></script>
<script type="text/javascript">
// <![CDATA[
var copy_paste = '';
/**
* Default values for width and height values for the wizard pop-up window
**/
var popup_width = 700;
var popup_height = 400;
/**
* Default wizard mode
* 0=Disable wizards | 1=Pop Up window | 2=In post (Ajax)
**/
var popup_wizards = false;
/**
* Replace all bbcodes to a plain text
* Code based off: http://ufku.com/personal/bbc2html
* @param string data post text to convert
**/
function bbcode_to_plain(data)
{
/** Have a possible bbcode ? **/
if (data.indexOf('[') < 0)
{
return data;
}
/**
* the RegExp() built a regular expression
* Regular expressions are patterns used to match character combinations in strings.
**/
function bbcode_to_plain_create_regexp(pattern, modifiers)
{
return new RegExp(pattern, modifiers);
}
/**
* The exec() method tests for a match in a string.
* This method returns the matched text if it finds a match, otherwise it returns null.
**/
function bbcode_to_plain_matched_text(str, pattern, modifiers)
{
return bbcode_to_plain_create_regexp(pattern, modifiers).exec(str);
}
/**
* The replace() method searches for a match between a substring and a string, and replaces the matched substring with a new substring
**/
function bbcode_to_plain_simple_replace(str)
{
return str.replace(basic_bbcode_match, bbcode_to_plain_pattern);
}
/**
* The replace() method searches for a match between a regular expression and a string, and replaces the matched substring with a new substring
**/
function bbcode_to_plain_regexp_replace(str, replace)
{
for (var i in replace)
{
if (bbcode_to_plain_matched_text(str, i, 'gim'))
{
str = str.replace(bbcode_to_plain_create_regexp(i, 'gim'), replace[i]);
}
}
return str;
}
/**
* Check which replacement we should apply
**/
function bbcode_to_plain_pattern(match_0, match_1, match_2, match_3)
{
if (match_3 && match_3.indexOf('[') > -1)
{
match_3 = bbcode_to_plain_simple_replace(match_3);
}
return match_3;
}
var basic_bbcode_match = bbcode_to_plain_create_regexp('\\[([a-z][a-z0-9]*)(?:=([^\\]]+))?]((?:.|[\r\n])*?)\\[/\\1]', 'gim');
var basic_bbcode_replace = bbcode_to_plain_create_regexp('^(\\d+)x(\\d+)$');
/** Special bbcodes **/
var special_bbcodes_init = {
code : [{'': ''}, '', ''],
quote : [{'': ''}, '', ''],
list : [{'': ''}, '', ''],
bbvideo : [{'': ''}, '', ''],
align : [{'': ''}, '', ''],
tr : [{'': ''}, '', ''],
td : [{'': ''}, '', ''],
video : [{'': ''}, '', ''],
quicktime : [{'': ''}, '', ''],
ram : [{'': ''}, '', ''],
flv : [{'': ''}, '', ''],
flash : [{'': ''}, '', ''],
web : [{'': ''}, '', '']
};
var special_bbcodes_array = {};
for (var i in special_bbcodes_init)
{
if(i)
{
special_bbcodes_array['\\[('+ i +')]((?:.|[\r\n])*?)\\[/\\1]'] = function(match_0, match_1, match_2) { return bbcode_to_plain_regexp_replace(match_2, ''); };
special_bbcodes_array['\\[('+ i +')(.*?)]((?:.|[\r\n])*?)\\[/\\1]'] = function(match_0, match_1, match_2, match_3) { return bbcode_to_plain_regexp_replace(match_3, ''); };
special_bbcodes_array['\\[('+ i +')(\\=|\\s|)?(.*?)]((?:.|[\r\n])*?)\\[/\\1]'] = function(match_0, match_1, match_2, match_3) { return bbcode_to_plain_regexp_replace(match_3, ''); };
// special_bbcodes_array['\\[('+ i +')=(.*?)]((?:.|[\r\n])*?)\\[/\\1]'] = function(match_0, match_1, match_2, match_3) { return bbcode_to_plain_regexp_replace(match_3, ''); };
}
}
/** Extra bbcodes **/
var extra_bbcodes_array = {
'\\[\\*]' : ' ',
'\\[tabs]' : '',
'\\[tabs\\:(.*?)]' : ' $1',
'\\[/tabs]' : '',
'\\[(hr|tab(=[a-z0-9]*))]' : ''
};
return bbcode_to_plain_simple_replace(bbcode_to_plain_regexp_replace(bbcode_to_plain_regexp_replace(data, special_bbcodes_array), extra_bbcodes_array));
}
/**
* Help line tips values
**/
var help_line2 = {
'abbc3_b' : ("Texte en gras" ? "Texte en gras" : "") + (("[b]texte[/b]" || "") ? " :" : "") + (("[b]texte[/b]") ? " [b]texte[/b]" : "") + (("") ? " " : "") + (("") ? "\nExemple : " : ""),
'abbc3_i' : ("Texte en italique" ? "Texte en italique" : "") + (("[i]texte[/i]" || "") ? " :" : "") + (("[i]texte[/i]") ? " [i]texte[/i]" : "") + (("") ? " " : "") + (("") ? "\nExemple : " : ""),
'abbc3_u' : ("Texte souligné" ? "Texte souligné" : "") + (("[u]texte[/u]" || "") ? " :" : "") + (("[u]texte[/u]") ? " [u]texte[/u]" : "") + (("") ? " " : "") + (("") ? "\nExemple : " : ""),
'abbc3_s' : ("Texte barré" ? "Texte barré" : "") + (("[s]texte[/s]" || "") ? " :" : "") + (("[s]texte[/s]") ? " [s]texte[/s]" : "") + (("") ? " " : "") + (("") ? "\nExemple : " : ""),
'abbc3_sup' : ("Texte en exposant" ? "Texte en exposant" : "") + (("[sup]texte[/sup]" || "") ? " :" : "") + (("[sup]texte[/sup]") ? " [sup]texte[/sup]" : "") + (("") ? " " : "") + (("") ? "\nExemple : " : ""),
'abbc3_sub' : ("Texte en indice" ? "Texte en indice" : "") + (("[sub]text[/sub]" || "") ? " :" : "") + (("[sub]text[/sub]") ? " [sub]text[/sub]" : "") + (("") ? " " : "") + (("") ? "\nExemple : " : ""),
'abbc3_glow' : ("Lueur de texte" ? "Lueur de texte" : "") + (("[glow=couleur]texte[/glow]" || "") ? " :" : "") + (("[glow=couleur]texte[/glow]") ? " [glow=couleur]texte[/glow]" : "") + (("") ? " " : "") + (("") ? "\nExemple : " : ""),
'abbc3_listb' : ("Liste à puces" ? "Liste à puces" : "") + (("[list]texte[/list]" || "Remarque: utilisez [*] pour créer une ligne") ? " :" : "") + (("[list]texte[/list]") ? " [list]texte[/list]" : "") + (("Remarque: utilisez [*] pour créer une ligne") ? " Remarque: utilisez [*] pour créer une ligne" : "") + (("") ? "\nExemple : " : ""),
'abbc3_listo' : ("Liste à chiffres ou lettres" ? "Liste à chiffres ou lettres" : "") + (("[list=1|a|A|i|I]texte[/list]" || "Remarque: utilisez [*] pour créer une ligne") ? " :" : "") + (("[list=1|a|A|i|I]texte[/list]") ? " [list=1|a|A|i|I]texte[/list]" : "") + (("Remarque: utilisez [*] pour créer une ligne") ? " Remarque: utilisez [*] pour créer une ligne" : "") + (("") ? "\nExemple : " : ""),
'abbc3_listitem' : ("Ligne d’une liste" ? "Ligne d’une liste" : "") + (("[*]texte" || "") ? " :" : "") + (("[*]texte") ? " [*]texte" : "") + (("") ? " " : "") + (("") ? "\nExemple : " : ""),
'abbc3_cut' : ("Supprimer le texte sélectionné" ? "Supprimer le texte sélectionné" : "") + (("" || "") ? " :" : "") + (("") ? " " : "") + (("") ? " " : "") + (("") ? "\nExemple : " : ""),
'abbc3_copy' : ("Copier le texte sélectionné" ? "Copier le texte sélectionné" : "") + (("" || "") ? " :" : "") + (("") ? " " : "") + (("") ? " " : "") + (("") ? "\nExemple : " : ""),
'abbc3_paste' : ("Coller le texte copié" ? "Coller le texte copié" : "") + (("" || "") ? " :" : "") + (("") ? " " : "") + (("") ? " " : "") + (("") ? "\nExemple : " : ""),
'abbc3_plain' : ("Supprimer tous les BBCodes du texte sélectionné" ? "Supprimer tous les BBCodes du texte sélectionné" : "") + (("" || "") ? " :" : "") + (("") ? " " : "") + (("") ? " " : "") + (("") ? "\nExemple : " : ""),
'abbc3_tab' : ("Créer une indentation" ? "Créer une indentation" : "") + (("[tab=nn]" || "Saisissez un nombre qui sera l’indentation mesurée en pixels.") ? " :" : "") + (("[tab=nn]") ? " [tab=nn]" : "") + (("Saisissez un nombre qui sera l’indentation mesurée en pixels.") ? " Saisissez un nombre qui sera l’indentation mesurée en pixels." : "") + (("") ? "\nExemple : " : ""),
'abbc3_alignjustify' : ("Texte justifié" ? "Texte justifié" : "") + (("[align=justify]texte[/align]" || "") ? " :" : "") + (("[align=justify]texte[/align]") ? " [align=justify]texte[/align]" : "") + (("") ? " " : "") + (("") ? "\nExemple : " : ""),
'abbc3_alignleft' : ("Texte aligné à gauche" ? "Texte aligné à gauche" : "") + (("[align=left]texte[/align]" || "") ? " :" : "") + (("[align=left]texte[/align]") ? " [align=left]texte[/align]" : "") + (("") ? " " : "") + (("") ? "\nExemple : " : ""),
'abbc3_aligncenter' : ("Texte aligné au centre" ? "Texte aligné au centre" : "") + (("[align=center]texte[/align]" || "") ? " :" : "") + (("[align=center]texte[/align]") ? " [align=center]texte[/align]" : "") + (("") ? " " : "") + (("") ? "\nExemple : " : ""),
'abbc3_alignright' : ("Texte aligné à droite" ? "Texte aligné à droite" : "") + (("[align=right]texte[/align]" || "") ? " :" : "") + (("[align=right]texte[/align]") ? " [align=right]texte[/align]" : "") + (("") ? " " : "") + (("") ? "\nExemple : " : ""),
'abbc3_pre' : ("Text préformaté" ? "Text préformaté" : "") + (("[pre]texte[/pre]" || "") ? " :" : "") + (("[pre]texte[/pre]") ? " [pre]texte[/pre]" : "") + (("") ? " " : "") + (("") ? "\nExemple : " : ""),
'abbc3_quote' : ("Citer" ? "Citer" : "") + (("[quote]texte[/quote] ou [quote=“membre”]texte[/quote]" || "") ? " :" : "") + (("[quote]texte[/quote] ou [quote=“membre”]texte[/quote]") ? " [quote]texte[/quote] ou [quote=“membre”]texte[/quote]" : "") + (("") ? " " : "") + (("") ? "\nExemple : " : ""),
'abbc3_code' : ("Code" ? "Code" : "") + (("[code]code[/code]" || "") ? " :" : "") + (("[code]code[/code]") ? " [code]code[/code]" : "") + (("") ? " " : "") + (("") ? "\nExemple : " : ""),
'abbc3_spoil' : ("Spoiler" ? "Spoiler" : "") + (("[spoil]texte[/spoil]" || "") ? " :" : "") + (("[spoil]texte[/spoil]") ? " [spoil]texte[/spoil]" : "") + (("") ? " " : "") + (("") ? "\nExemple : " : ""),
'abbc3_hidden' : ("Cacher le contenu aux invités" ? "Cacher le contenu aux invités" : "") + (("[hidden]texte[/hidden]" || "") ? " :" : "") + (("[hidden]texte[/hidden]") ? " [hidden]texte[/hidden]" : "") + (("") ? " " : "") + (("") ? "\nExemple : " : ""),
'abbc3_mod' : ("Message des Modérateurs" ? "Message des Modérateurs" : "") + (("[mod=Nom]texte[/mod]" || "") ? " :" : "") + (("[mod=Nom]texte[/mod]") ? " [mod=Nom]texte[/mod]" : "") + (("") ? " " : "") + (("") ? "\nExemple : " : ""),
'abbc3_url' : ("Site Internet" ? "Site Internet" : "") + (("[url]http://url[/url] ou [url=http://url]Nom du site[/url]" || "") ? " :" : "") + (("[url]http://url[/url] ou [url=http://url]Nom du site[/url]") ? " [url]http://url[/url] ou [url=http://url]Nom du site[/url]" : "") + (("") ? " " : "") + (("http://www.mssti.com") ? "\nExemple : http://www.mssti.com" : ""),
'abbc3_email' : ("Adresse e-mail" ? "Adresse e-mail" : "") + (("[email][email protected][/email] ou [[email protected]]Mon adresse e-mail[/email]" || "") ? " :" : "") + (("[email][email protected][/email] ou [[email protected]]Mon adresse e-mail[/email]") ? " [email][email protected][/email] ou [[email protected]]Mon adresse e-mail[/email]" : "") + (("") ? " " : "") + (("[email protected]") ? "\nExemple : [email protected]" : ""),
'abbc3_bbvideo' : ("Insérer une vidéo" ? "Insérer une vidéo" : "") + (("[BBvideo largeur,hauteur]URL de la vidéo[/BBvideo]" || "") ? " :" : "") + (("[BBvideo largeur,hauteur]URL de la vidéo[/BBvideo]") ? " [BBvideo largeur,hauteur]URL de la vidéo[/BBvideo]" : "") + (("") ? " " : "") + (("http://www.youtube.com/watch?v=sP4NMoJcFd4") ? "\nExemple : http://www.youtube.com/watch?v=sP4NMoJcFd4" : ""),
'abbc3_img' : ("Insérer une image" ? "Insérer une image" : "") + (("[img]http://image_url[/img] ou [img=left|center|right|float-left|float-right]http://image_url[/img]" || "") ? " :" : "") + (("[img]http://image_url[/img] ou [img=left|center|right|float-left|float-right]http://image_url[/img]") ? " [img]http://image_url[/img] ou [img=left|center|right|float-left|float-right]http://image_url[/img]" : "") + (("") ? " " : "") + (("http://www.google.com/intl/en_com/images/logo_plain.png") ? "\nExemple : http://www.google.com/intl/en_com/images/logo_plain.png" : ""),
'abbc3_thumbnail' : ("Insérer une miniature" ? "Insérer une miniature" : "") + (("[thumbnail]http://image_url[/thumbnail] ou [thumbnail=left|center|right|float-left|float-right]http://image_url[/thumbnail]" || "") ? " :" : "") + (("[thumbnail]http://image_url[/thumbnail] ou [thumbnail=left|center|right|float-left|float-right]http://image_url[/thumbnail]") ? " [thumbnail]http://image_url[/thumbnail] ou [thumbnail=left|center|right|float-left|float-right]http://image_url[/thumbnail]" : "") + (("") ? " " : "") + (("http://www.google.com/intl/en_com/images/logo_plain.png") ? "\nExemple : http://www.google.com/intl/en_com/images/logo_plain.png" : ""),
'abbc3_imgshack' : ("Insérer une image d’Imageshack" ? "Insérer une image d’Imageshack" : "") + (("[url=http://imageshack.us][img]http://image_url[/img][/url]" || "") ? " :" : "") + (("[url=http://imageshack.us][img]http://image_url[/img][/url]") ? " [url=http://imageshack.us][img]http://image_url[/img][/url]" : "") + (("") ? " " : "") + (("") ? "\nExemple : " : ""),
'abbc3_search' : ("Insérer un mot à chercher" ? "Insérer un mot à chercher" : "") + (("[search]texte[/search] ou [search=bing|yahoo|google|altavista|lycos|wikipedia]texte[/search]" || "") ? " :" : "") + (("[search]texte[/search] ou [search=bing|yahoo|google|altavista|lycos|wikipedia]texte[/search]") ? " [search]texte[/search] ou [search=bing|yahoo|google|altavista|lycos|wikipedia]texte[/search]" : "") + (("") ? " " : "") + (("") ? "\nExemple : " : ""),
'abbc3_font' : "Police de texte : " + "[font=Comic Sans MS]texte[/font]\nRemarque: vous pouvez définir d’autres polices.",
'abbc3_size' : "Taille de la police : " + "[size=150]grand texte[/size]\nRemarque : la valeur peut être exprimée en pourcentage.",
'abbc3_highlight' : "Surligner : " + "[highlight=yellow]texte[/highlight]\nRemarque : vous pouvez utiliser les valeurs hexadécimales (color=#FF0000 ou color=red).",
'abbc3_color' : "Couleur de la police : " + "[color=red]texte[/color]\nRemarque : vous pouvez utiliser les valeurs hexadécimales (color=#FF0000 ou color=red).",
'abbc3_tip' : "Astuce : les styles peuvent être appliqués rapidement au texte sélectionné."
};
/**
* Show help line tips
* @param string help string to display
* @param string help_box the element ID where the tip will be displayed
**/
function helpline2(help, help_box)
{
if (!help)
{
help = 'abbc3_tip';
}
if (!help_box)
{
help_box = 'helpbox';
}
var helpbox = document.forms[form_name].elements[help_box];
if (helpbox)
{
helpbox.value = (help_line2[help]) ? help_line2[help] : ((help_line[help]) ? help_line[help] : help);
}
}
/**
* Main function Apply bbcodes
* based-off editor.js -> function bbfontstyle()
* @param string bbcode bbcode name
* @param string bbopen The open tag
* @param string bbclose The close tag
* @param bool is_abbcode is a custom bbcode or not
**/
function bbstyle2(bbcode, bbopen, bbclose, is_abbcode)
{
// If this is a regular custom bbcode, just do it quickly in the regular way
if (!is_abbcode)
{
bbfontstyle(bbopen, bbclose);
return;
}
theSelection = false;
var textarea = document.forms[form_name].elements[text_name];
textarea.focus();
var selLength, selStart, selEnd, s1, s2, s3;
if ((clientVer >= 4) && is_ie && is_win)
{
/** Get text selection **/
theSelection = document.selection.createRange().text;
}
else if (document.forms[form_name].elements[text_name].selectionEnd && (document.forms[form_name].elements[text_name].selectionEnd - document.forms[form_name].elements[text_name].selectionStart > 0))
{
selLength = textarea.textLength;
selLength = (typeof(selLength) == 'undefined' || selLength == '' || selLength === null) ? textarea.value.length : selLength;
selStart = textarea.selectionStart;
selEnd = textarea.selectionEnd;
if (selEnd == 1 || selEnd == 2)
{
selEnd = selLength;
}
s1 = (textarea.value).substring(0, selStart);
s2 = (textarea.value).substring(selStart, selEnd);
s3 = (textarea.value).substring(selEnd, selLength);
theSelection = s2;
}
var theSelectionLength = theSelection.length;
switch (bbcode)
{
/** We make life easier for some bbcodes - Start **/
case "abbc3_tab":
bbfontstyle("[tab=30]", "");
break;
case "abbc3_anchor":
bbfontstyle("[anchor= goto=]", "[/anchor]");
break;
case "abbc3_mod":
bbfontstyle("[mod=\"Josselin\"]", "[/mod]");
break;
case "abbc3_tabs":
bbfontstyle("[tabs][tabs: ]", "[/tabs]");
break;
case "abbc3_listb":
bbfontstyle("[list][*]", "[/list]");
break;
case "abbc3_listo":
bbfontstyle("[list=1][*]", "[/list]");
break;
case "abbc3_listitem":
bbfontstyle("[*]", "");
break;
case "abbc3_hr":
bbfontstyle("[hr]", "");
break;
case "abbc3_glow":
bbfontstyle("[glow=red]", "[/glow]");
break;
case "abbc3_shadow":
bbfontstyle("[shadow=blue]", "[/shadow]");
break;
case "abbc3_dropshadow":
bbfontstyle("[dropshadow=blue]", "[/dropshadow]");
break;
case "abbc3_blur":
bbfontstyle("[blur=blue]", "[/blur]");
break;
case "abbc3_wave":
bbfontstyle("[wave=blue]", "[/wave]");
break;
case "abbc3_imgshack":
popup('http://imageshack.us/', popup_width, popup_height);
// popup('http://postimage.org/', popup_width, popup_height);
// popup('http://tinypic.com/', popup_width, popup_height);
break;
/** We make life easier for some bbcodes - End **/
/** These bbcodes use the wizard - Start **/
case "abbc3_upload": // This bbcode was deprecated in v3.0.7
case "abbc3_url":
case "abbc3_ed2k":
case "abbc3_email":
case "abbc3_img":
case "abbc3_thumbnail":
case "abbc3_rapidshare":
case "abbc3_testlink":
case "abbc3_click":
case "abbc3_table":
/** These bbcodes need extra data **/
case "abbc3_bbvideo":
case "abbc3_flash":
case "abbc3_flv":
case "abbc3_video":
case "abbc3_quicktime":
case "abbc3_ram":
case "abbc3_web":
/** Web videos bbcodes **/
case "abbc3_stream":
case "abbc3_veoh":
case "abbc3_collegehumor":
case "abbc3_youtube":
/** Gradient requires its own function **/
case "abbc3_grad":
/** Extra Custom bbcodes - Start **/
/** Extra Custom bbcodes - End **/
if (bbcode == "abbc3_grad")
{
if (typeof(theSelection) == 'undefined' || theSelection === null || theSelection == '')
{
alert("Erreur: \nAucun texte n’a été sélectionné.");
return;
}
if (theSelectionLength > 120)
{
alert("Erreur: \nSeulement les textes sélectionnés de moins de 120 caractères sont autorisés." + theSelectionLength);
return;
}
}
if (bbcode == "abbc3_table" && (theSelection || !popup_wizards))
{
bbfontstyle("[table=][tr=][td=]", "[/td][/tr][/table]");
return;
}
if ((theSelection || !popup_wizards) && bbcode != "abbc3_grad")
{
bbcode_extra = (bbcode == 'abbc3_bbvideo' || bbcode == 'abbc3_flash' || bbcode == 'abbc3_flv' || bbcode == 'abbc3_video' || bbcode == 'abbc3_quicktime' || bbcode == 'abbc3_ram') ? " 560,340" : (bbcode == 'abbc3_web') ? ' 100%,100' : '';
if ( bbcode == "abbc3_ed2k")
{
bbcode = "abbc3_url";
}
bbcode = bbcode.replace("abbc3_" , "");
bbfontstyle('[' + bbcode + bbcode_extra + ']', '[/' + bbcode + ']');
return;
}
var wizards_url = './abbcode_page.php?mode=wizards';
var wizards_params = '&abbc3=' + bbcode + '&form_name=' + form_name + '&text_name=' + text_name;
popup(wizards_url + wizards_params, popup_width, popup_height);
break;
/** These bbcodes use the wizard - End **/
case "abbc3_plain":
if (typeof(theSelection) == 'undefined' || theSelection == '' || theSelection === null)
{
alert("Erreur: \nAucun texte n’a été sélectionné.");
return;
}
else
{
try {// tempSelection = tempSelection.replace(/\[[^\]]*\]/gi,"");
var tempSelection = bbcode_to_plain(theSelection);
if ((clientVer >= 4) && is_ie && is_win)
{
document.selection.createRange().text = tempSelection;
}
else if (textarea.selectionEnd && (textarea.selectionEnd - textarea.selectionStart > 0))
��{
textarea.value = s1 + tempSelection + s3;
selEnd = textarea.selectionEnd = (textarea.value).substring(0, selStart).length + tempSelection.length;
}
} catch (e) {}
}
break;
case "abbc3_cut":
if (typeof(theSelection) == 'undefined' || theSelection === null || theSelection == '')
{
alert("Erreur: \nAucun texte n’a été sélectionné.");
return;
}
else
{
if ((clientVer >= 4) && is_ie && is_win)
{
document.selection.createRange().text = '';
}
else if (textarea.selectionEnd && (textarea.selectionEnd - textarea.selectionStart > 0))
{
textarea.value = (textarea.value).substring(0, selStart) + (textarea.value).substring(selEnd, selLength);
selEnd = textarea.selectionEnd = (textarea.value).substring(0, selStart).length;
}
}
break;
case "abbc3_copy":
if (typeof(theSelection) == 'undefined' || theSelection == '' || theSelection === null)
{
alert("Erreur: \nAucun texte n’a été sélectionné.");
return;
}
else
{
copy_paste = theSelection;
}
break;
case "abbc3_paste":
if (copy_paste)
{
bbfontstyle(copy_paste, '');
}
else
{
alert("Erreur: \nVous devez d’abord copier une sélection de texte, puis la coller");
}
break;
/** This should never happen, but just in case let phpbb3 take care of it **/
default:
bbfontstyle(bbopen, bbclose);
break;
}
theSelection = '';
}
/**
* Dropdown Color pallette for highlight text & colour text
* Code from: http://www.mredkj.com/tutorials/tutorial005.html
* @param string el the element id
* @param string mode (fancy | dropdown)
**/
function ABBC3_palette(el, mode)
{
var elSel = document.getElementById(el);
if (!elSel)
{
return;
}
if (!mode)
{
mode = 'dropdown';
}
var color;
var optn;
var item;
var optn_className;
var numberList = {
0 : '00',
1 : '40',
2 : '80',
3 : 'BF',
4 : 'FF'
};
if (mode == 'dropdown' && el == 'abbc3_color')
{
var topic_cur_post_id = document.forms[form_name].elements.topic_cur_post_id;
topic_cur_post_id = (topic_cur_post_id) ? parseInt(topic_cur_post_id.value, 10) + 1 : parseInt('0', 10);
optn_className = (isEven(topic_cur_post_id)) ? 'bg2 row1' : 'bg1 row2';
}
for (var r = 4; r > -1; r--)
{
for (var g = 4; g > -1; g--)
{
for (var b = 4; b > -1; b--)
{
if (mode == 'fancy')
{
color = String(numberList[r]) + String(numberList[g]) + String(numberList[b]);
color = color.toLowerCase();
item = document.createElement('li');
item.innerHTML = 'Il s’agit d’un exemple de texte' + ' (#' + color + ')';
if (el == 'ul_color_selector')
{
item.onclick = new Function('bbfontstyle("[color=#'+color+']", "[/color]"); return false;');
item.style.color = '#' + color;
}
else
{
item.onclick = new Function('bbfontstyle("[highlight=#'+color+']", "[/highlight]"); return false;');
item.style.backgroundColor = '#' + color;
}
elSel.appendChild(item);
}
else if (mode == 'dropdown')
{
color = String(numberList[r]) + String(numberList[g]) + String(numberList[b]);
color = color.toLowerCase();
optn = document.createElement('option');
optn.text = '#' + color;
optn.value = color;
if (el == 'abbc3_color')
{
optn.className = optn_className;
optn.style.color = '#' + color;
}
else
{
optn.style.backgroundColor = '#' + color;
}
elSel.options.add(optn);
}
}
}
}
}
/**
* The given number is even or odd ?
**/
function isEven(Number)
{
return (Number%2 == 0) ? true : false;
}
/**
* javascript for Bubble Tooltips by Alessandro Fulciniti
* http://pro.html.it - http://web-graphics.com
* obtained from: http://web-graphics.com/mtarchive/001717.php
*
* MSSTI:
* - added ability to perform tooltips on list elements
* @param string id the element ID
* @param string headline the title
* @param string sub_id unknown
* @param string content_direction the text direction (rtl|ltr)
**/
function ABBC3_enable_tooltips_list(id, headline, sub_id, content_direction)
{
var links, i, hold;
s_content_direction = (content_direction) ? content_direction : 'rtl';
head_text = headline;
if (!document.getElementById || !document.getElementsByTagName)
{
return;
}
hold = document.createElement('span');
hold.id = '_tooltip_container';
hold.setAttribute('id', '_tooltip_container');
hold.style.position = 'absolute';
document.getElementsByTagName('body')[0].appendChild(hold);
if (id === null)
{
links = document.getElementsByTagName('a');
}
else
{
links = document.getElementById(id).getElementsByTagName('a');
}
for (i = 0; i < links.length; i++)
{
if (sub_id)
{
if (links[i].id.substr(0, sub_id.length) == sub_id)
{
prepare(links[i]);
}
}
else
{
prepare(links[i]);
}
}
}
/**
* Correct positioning of tooltip container
* dependance prepare()
*/
function locate(e)
{
var posx = 0;
var posy = 0;
e = e.parentNode.parentNode;
if (e.offsetParent)
{
for (posx = 0, posy = 0; e.offsetParent; e = e.offsetParent)
{
posx += e.offsetLeft;
posy += e.offsetTop;
}
}
else
{
posx = e.offsetLeft;
posy = e.offsetTop;
}
document.getElementById('_tooltip_container').style.left = (s_content_direction == 'rtl' ? (posx-140) : (posx)) + 'px';
document.getElementById('_tooltip_container').style.top = (s_content_direction == 'rtl' ? (posy-90) : (posy-100)) + 'px';
}
/**
* Manage initial functions
**/
function ABBC3_init()
{
ABBC3_enable_tooltips_list('ul_selector', 'Description', false, 'ltr');
ABBC3_palette('abbc3_highlight', 'dropdown');
}
/** Install the safety net - START **/
if (window.onload_functions) // prosilver
{
onload_functions[onload_functions.length] = "ABBC3_init();";
}
else if (typeof(window.addEventListener) !== "undefined") // DOM
{
window.addEventListener("load", ABBC3_init, false);
}
else if (typeof(window.attachEvent) !== "undefined") // MSIE
{
window.attachEvent("onload", ABBC3_init);
}
/** Install the safety net - END **/
// ]]>
</script>
<noscript><div class="rules"><p style="text-align: center;"><strong>Votre navigateur a désactivé les scripts ou il ne prend pas en charge le script côté client <em>( JavaScript ! )</em>.</strong><br />La page que vous voyez nécessite l’utilisation de JavaScript pour de meilleures performances.<br/>Si vous avez volontairement désactivé JavaScript, merci de l’activer.</p></div></noscript>
<table id="abbc3posttable" width="100%">
<tbody><tr align="left">
<td style="background: url("./styles/abbcode/images/bg/bg_abbc3_grey.gif");" colspan="2" valign="middle">
<span class="abbc3_link">
<a href="./abbcode_page.php?mode=help" rel="external" onclick="window.open(this.href);return false;" title="BBCodes Box 3 Avancés : Page d’aide"><img src="./styles/abbcode/images/help.gif" alt="BBCodes Box 3 Avancés : Page d’aide" title="BBCodes Box 3 Avancés : Page d’aide"></a>
</span>
<img src="./styles/abbcode/images/dots.gif" alt="" class="btnbbcode3 dot">
<ul class="_selector">
<li class="li_selector"><span id="button_selector" class="button2"> Sélectionnez le BBCode </span>
<ul id="ul_selector" class="panel ul_selector">
<li id="abbcode_-12" style="background-image: url("./styles/abbcode/images/bold.gif");">
<a href="#abbcode_-12" onclick="bbstyle2('abbc3_b', '[b]', '[/b]', 1); return false;">Texte en gras</a>
</li>
<li id="abbcode_-13" style="background-image: url("./styles/abbcode/images/italic.gif");">
<a href="#abbcode_-13" onclick="bbstyle2('abbc3_i', '[i]', '[/i]', 1); return false;">Texte en italique</a>
</li>
<li id="abbcode_-14" style="background-image: url("./styles/abbcode/images/under.gif");">
<a href="#abbcode_-14" onclick="bbstyle2('abbc3_u', '[u]', '[/u]', 1); return false;">Texte souligné</a>
</li>
<li id="abbcode_17" style="background-image: url("./styles/abbcode/images/strike.gif");">
<a href="#abbcode_17" onclick="bbstyle2('abbc3_s', '[s]', '[/s]', 1); return false;">Texte barré</a>
</li>
<li>------------------</li>
<li id="abbcode_18" style="background-image: url("./styles/abbcode/images/sup.gif");">
<a href="#abbcode_18" onclick="bbstyle2('abbc3_sup', '[sup]', '[/sup]', 1); return false;">Texte en exposant</a>
</li>
<li id="abbcode_19" style="background-image: url("./styles/abbcode/images/sub.gif");">
<a href="#abbcode_19" onclick="bbstyle2('abbc3_sub', '[sub]', '[/sub]', 1); return false;">Texte en indice</a>
</li>
<li id="abbcode_20" style="background-image: url("./styles/abbcode/images/glow.gif");">
<a href="#abbcode_20" onclick="bbstyle2('abbc3_glow', '[glow=]', '[/glow]', 1); return false;">Lueur de texte</a>
</li>
<li>------------------</li>
<li id="abbcode_-9" style="background-image: url("./styles/abbcode/images/listb.gif");">
<a href="#abbcode_-9" onclick="bbstyle2('abbc3_listb', '[listb]', '[/listb]', 1); return false;">Liste à puces</a>
</li>
<li id="abbcode_-10" style="background-image: url("./styles/abbcode/images/listo.gif");">
<a href="#abbcode_-10" onclick="bbstyle2('abbc3_listo', '[listo]', '[/listo]', 1); return false;">Liste à chiffres ou lettres</a>
</li>
<li id="abbcode_-11" style="background-image: url("./styles/abbcode/images/listitem.gif");">
<a href="#abbcode_-11" onclick="bbstyle2('abbc3_listitem', '[listitem]', '[/listitem]', 1); return false;">Ligne d’une liste</a>
</li>
<li>------------------</li>
<li id="abbcode_-4" style="background-image: url("./styles/abbcode/images/cut.gif");">
<a href="#abbcode_-4" onclick="bbstyle2('abbc3_cut', '[cut]', '[/cut]', 1); return false;">Supprimer le texte sélectionné</a>
</li>
<li id="abbcode_-5" style="background-image: url("./styles/abbcode/images/copy.gif");">
<a href="#abbcode_-5" onclick="bbstyle2('abbc3_copy', '[copy]', '[/copy]', 1); return false;">Copier le texte sélectionné</a>
</li>
<li id="abbcode_-6" style="background-image: url("./styles/abbcode/images/paste.gif");">
<a href="#abbcode_-6" onclick="bbstyle2('abbc3_paste', '[paste]', '[/paste]', 1); return false;">Coller le texte copié</a>
</li>
<li id="abbcode_-7" style="background-image: url("./styles/abbcode/images/plain.gif");">
<a href="#abbcode_-7" onclick="bbstyle2('abbc3_plain', '[plain]', '[/plain]', 1); return false;">Supprimer tous les BBCodes du texte sélectionné</a>
</li>
<li>------------------</li>
<li id="abbcode_32" style="background-image: url("./styles/abbcode/images/tab.gif");">
<a href="#abbcode_32" onclick="bbstyle2('abbc3_tab', '[tab=]', '[/tab]', 1); return false;">Créer une indentation</a>
</li>
<li id="abbcode_26" style="background-image: url("./styles/abbcode/images/justify.gif");">
<a href="#abbcode_26" onclick="bbstyle2('abbc3_alignjustify', '[align=justify]', '[/align]', 1); return false;">Texte justifié</a>
</li>
<li id="abbcode_27" style="background-image: url("./styles/abbcode/images/left.gif");">
<a href="#abbcode_27" onclick="bbstyle2('abbc3_alignleft', '[align=left]', '[/align]', 1); return false;">Texte aligné à gauche</a>
</li>
<li id="abbcode_28" style="background-image: url("./styles/abbcode/images/center.gif");">
<a href="#abbcode_28" onclick="bbstyle2('abbc3_aligncenter', '[align=center]', '[/align]', 1); return false;">Texte aligné au centre</a>
</li>
<li id="abbcode_30" style="background-image: url("./styles/abbcode/images/right.gif");">
<a href="#abbcode_30" onclick="bbstyle2('abbc3_alignright', '[align=right]', '[/align]', 1); return false;">Texte aligné à droite</a>
</li>
<li id="abbcode_31" style="background-image: url("./styles/abbcode/images/preformat.gif");">
<a href="#abbcode_31" onclick="bbstyle2('abbc3_pre', '[pre]', '[/pre]', 1); return false;">Text préformaté</a>
</li>
<li>------------------</li>
<li id="abbcode_-19" style="background-image: url("./styles/abbcode/images/quote.gif");">
<a href="#abbcode_-19" onclick="bbstyle2('abbc3_quote', '[quote]', '[/quote]', 1); return false;">Citer</a>
</li>
<li id="abbcode_-18" style="background-image: url("./styles/abbcode/images/code.gif");">
<a href="#abbcode_-18" onclick="bbstyle2('abbc3_code', '[code]', '[/code]', 1); return false;">Code</a>
</li>
<li>------------------</li>
<li id="abbcode_39" style="background-image: url("./styles/abbcode/images/spoil.gif");">
<a href="#abbcode_39" onclick="bbstyle2('abbc3_spoil', '[spoil]', '[/spoil]', 1); return false;">Spoiler</a>
</li>
<li id="abbcode_40" style="background-image: url("./styles/abbcode/images/hidden.gif");">
<a href="#abbcode_40" onclick="bbstyle2('abbc3_hidden', '[hidden]', '[/hidden]', 1); return false;">Cacher le contenu aux invités</a>
</li>
<li id="abbcode_41" style="background-image: url("./styles/abbcode/images/moderator.gif");">
<a href="#abbcode_41" onclick="bbstyle2('abbc3_mod', '[mod=]', '[/mod]', 1); return false;">Message des Modérateurs</a>
</li>
<li>------------------</li>
<li id="abbcode_-21" style="background-image: url("./styles/abbcode/images/url.gif");">
<a href="#abbcode_-21" onclick="bbstyle2('abbc3_url', '[url]', '[/url]', 1); return false;">Site Internet</a>
</li>
<li id="abbcode_-22" style="background-image: url("./styles/abbcode/images/email.gif");">
<a href="#abbcode_-22" onclick="bbstyle2('abbc3_email', '[email]', '[/email]', 1); return false;">Adresse e-mail</a>
</li>
<li>------------------</li>
<li id="abbcode_53" style="background-image: url("./styles/abbcode/images/bbvideo.gif");">
<a href="#abbcode_53" onclick="bbstyle2('abbc3_bbvideo', '[BBvideo]', '[/BBvideo]', 1); return false;">Insérer une vidéo</a>
</li>
<li id="abbcode_46" style="background-image: url("./styles/abbcode/images/img.gif");">
<a href="#abbcode_46" onclick="bbstyle2('abbc3_img', '[img=]', '[/img]', 1); return false;">Insérer une image</a>
</li>
<li id="abbcode_47" style="background-image: url("./styles/abbcode/images/thumb.gif");">
<a href="#abbcode_47" onclick="bbstyle2('abbc3_thumbnail', '[thumbnail]', '[/thumbnail]', 1); return false;">Insérer une miniature</a>
</li>
<li id="abbcode_-23" style="background-image: url("./styles/abbcode/images/imgshack.gif");">
<a href="#abbcode_-23" onclick="bbstyle2('abbc3_imgshack', '[imgshack]', '[/imgshack]', 1); return false;">Insérer une image d’Imageshack</a>
</li>
<li>------------------</li>
<li id="abbcode_52" style="background-image: url("./styles/abbcode/images/search.gif");">
<a href="#abbcode_52" onclick="bbstyle2('abbc3_search', '[search]', '[/search]', 1); return false;">Insérer un mot à chercher</a>
</li>
</ul>
</li>
</ul>
<img src="./styles/abbcode/images/dots.gif" alt="" class="btnbbcode3 dot">
<select id="abbc3_font" name="abbc3_font" onchange="bbfontstyle('[font=' + this.form.abbc3_font.options[this.form.abbc3_font.selectedIndex].value + ']', '[/font]'); this.form.abbc3_font.selectedIndex = 0" onmouseover="helpline2('abbc3_font')" onmouseout="helpline2()" title="Police de texte">
<option selected="selected">- Police de texte -</option>
<optgroup label="- ABBC Box 3 -">
<option style="font-family: Bradley Hand ITC;" value="Bradley Hand ITC">Bradley Hand ITC</option>
<option style="font-family: Century Gothic;" value="Century Gothic">Century Gothic</option>
<option style="font-family: Curlz MT;" value="Curlz MT">Curlz MT</option>
<option style="font-family: cursive;" value="cursive">Cursive</option>
<option style="font-family: fantasy;" value="fantasy">Fantasy</option>
<option style="font-family: French Script MT;" value="French Script MT">French Script MT</option>
<option style="font-family: Garamond;" value="Garamond">Garamond</option>
<option style="font-family: Garamond Bold;" value="Garamond Bold">Garamond Bold</option>
<option style="font-family: Goudy Stout;" value="Goudy Stout">Goudy Stout</option>
<option style="font-family: Helvetica;" value="Helvetica">Helvetica</option>
<option style="font-family: monospace;" value="monospace">Monospace</option>
<option style="font-family: OCR A Extended;" value="OCR A Extended">OCR A Extended</option>
<option style="font-family: Script MT Bold;" value="Script MT Bold">Script MT Bold</option>
</optgroup>
<!-- http://typetester.maratz.com/ -->
<optgroup label="- Liste déroulante -">
<option style="font-family: Arial;" value="Arial">Arial</option>
<option style="font-family: Arial Black;" value="Arial Black">Arial Black</option>
<option style="font-family: Comic Sans MS;" value="Comic Sans MS">Comic Sans MS</option>
<option style="font-family: Courier New;" value="Courier New">Courier New</option>
<option style="font-family: Georgia;" value="Georgia">Georgia</option>
<option style="font-family: Impact;" value="Impact">Impact</option>
<option style="font-family: Times New Roman;" value="Times New Roman">Times New Roman</option>
<option style="font-family: Trebuchet MS;" value="Trebuchet MS">Trebuchet MS</option>
<option style="font-family: Verdana;" value="Verdana">Verdana</option>
</optgroup>
<optgroup label="- Win par défaut -">
<option style="font-family: Lucida Console;" value="Lucida Console">Lucida Console</option>
<option style="font-family: Lucida Sans Unicode;" value="Lucida Sans Unicode">Lucida Sans Unicode</option>
<option style="font-family: Microsoft Sans Serif;" value="Microsoft Sans Serif">Microsoft Sans Serif</option>
<option style="font-family: MS Mincho;" value="MS Mincho">MS Mincho</option>
<option style="font-family: Palatino Linotype;" value="Palatino Linotype">Palatino Linotype</option>
<option style="font-family: Symbol;" value="Symbol">Symbol</option>
<option style="font-family: Tahoma;" value="Tahoma">Tahoma</option>
</optgroup>
</select>
<img src="./styles/abbcode/images/dots.gif" alt="" class="btnbbcode3 dot">
<select id="abbc3_size" name="abbc3_size" onchange="bbfontstyle('[size=' + this.form.abbc3_size.options[this.form.abbc3_size.selectedIndex].value + ']', '[/size]'); this.form.abbc3_size.selectedIndex = 0;" onmouseover="helpline2('abbc3_size')" onmouseout="helpline2()" title="Taille de la police">
<option selected="selected">- Taille de la police -</option>
<option style="font-size: 50%;" value="50">Très petite</option>
<option style="font-size: 85%;" value="85">Petite</option>
<option style="font-size: 100%;" value="100">Normale</option>
<option style="font-size: 150%;" value="150">Grande</option>
<option style="font-size: 200%;" value="200">Très grande</option>
</select>
<img src="./styles/abbcode/images/dots.gif" alt="" class="btnbbcode3 dot">
<select id="abbc3_highlight" name="abbc3_highlight" onchange="bbfontstyle('[highlight=#' + this.form.abbc3_highlight.options[this.form.abbc3_highlight.selectedIndex].value + ']', '[/highlight]'); this.form.abbc3_highlight.selectedIndex = 0;" onmouseover="helpline2('abbc3_highlight')" onmouseout="helpline2()" title="Surligner">
<option selected="selected" class="selected">- Surligner -</option>
<option style="background-color: rgb(255, 255, 255);" value="ffffff">#ffffff</option><option style="background-color: rgb(255, 255, 191);" value="ffffbf">#ffffbf</option><option style="background-color: rgb(255, 255, 128);" value="ffff80">#ffff80</option><option style="background-color: rgb(255, 255, 64);" value="ffff40">#ffff40</option><option style="background-color: rgb(255, 255, 0);" value="ffff00">#ffff00</option><option style="background-color: rgb(255, 191, 255);" value="ffbfff">#ffbfff</option><option style="background-color: rgb(255, 191, 191);" value="ffbfbf">#ffbfbf</option><option style="background-color: rgb(255, 191, 128);" value="ffbf80">#ffbf80</option><option style="background-color: rgb(255, 191, 64);" value="ffbf40">#ffbf40</option><option style="background-color: rgb(255, 191, 0);" value="ffbf00">#ffbf00</option><option style="background-color: rgb(255, 128, 255);" value="ff80ff">#ff80ff</option><option style="background-color: rgb(255, 128, 191);" value="ff80bf">#ff80bf</option><option style="background-color: rgb(255, 128, 128);" value="ff8080">#ff8080</option><option style="background-color: rgb(255, 128, 64);" value="ff8040">#ff8040</option><option style="background-color: rgb(255, 128, 0);" value="ff8000">#ff8000</option><option style="background-color: rgb(255, 64, 255);" value="ff40ff">#ff40ff</option><option style="background-color: rgb(255, 64, 191);" value="ff40bf">#ff40bf</option><option style="background-color: rgb(255, 64, 128);" value="ff4080">#ff4080</option><option style="background-color: rgb(255, 64, 64);" value="ff4040">#ff4040</option><option style="background-color: rgb(255, 64, 0);" value="ff4000">#ff4000</option><option style="background-color: rgb(255, 0, 255);" value="ff00ff">#ff00ff</option><option style="background-color: rgb(255, 0, 191);" value="ff00bf">#ff00bf</option><option style="background-color: rgb(255, 0, 128);" value="ff0080">#ff0080</option><option style="background-color: rgb(255, 0, 64);" value="ff0040">#ff0040</option><option style="background-color: rgb(255, 0, 0);" value="ff0000">#ff0000</option><option style="background-color: rgb(191, 255, 255);" value="bfffff">#bfffff</option><option style="background-color: rgb(191, 255, 191);" value="bfffbf">#bfffbf</option><option style="background-color: rgb(191, 255, 128);" value="bfff80">#bfff80</option><option style="background-color: rgb(191, 255, 64);" value="bfff40">#bfff40</option><option style="background-color: rgb(191, 255, 0);" value="bfff00">#bfff00</option><option style="background-color: rgb(191, 191, 255);" value="bfbfff">#bfbfff</option><option style="background-color: rgb(191, 191, 191);" value="bfbfbf">#bfbfbf</option><option style="background-color: rgb(191, 191, 128);" value="bfbf80">#bfbf80</option><option style="background-color: rgb(191, 191, 64);" value="bfbf40">#bfbf40</option><option style="background-color: rgb(191, 191, 0);" value="bfbf00">#bfbf00</option><option style="background-color: rgb(191, 128, 255);" value="bf80ff">#bf80ff</option><option style="background-color: rgb(191, 128, 191);" value="bf80bf">#bf80bf</option><option style="background-color: rgb(191, 128, 128);" value="bf8080">#bf8080</option><option style="background-color: rgb(191, 128, 64);" value="bf8040">#bf8040</option><option style="background-color: rgb(191, 128, 0);" value="bf8000">#bf8000</option><option style="background-color: rgb(191, 64, 255);" value="bf40ff">#bf40ff</option><option style="background-color: rgb(191, 64, 191);" value="bf40bf">#bf40bf</option><option style="background-color: rgb(191, 64, 128);" value="bf4080">#bf4080</option><option style="background-color: rgb(191, 64, 64);" value="bf4040">#bf4040</option><option style="background-color: rgb(191, 64, 0);" value="bf4000">#bf4000</option><option style="background-color: rgb(191, 0, 255);" value="bf00ff">#bf00ff</option><option style="background-color: rgb(191, 0, 191);" value="bf00bf">#bf00bf</option><option style="background-color: rgb(191, 0, 128);" value="bf0080">#bf0080</option><option style="background-color: rgb(191, 0, 64);" value="bf0040">#bf0040</option><option style="background-color: rgb(191, 0, 0);" value="bf0000">#bf0000</option><option style="background-color: rgb(128, 255, 255);" value="80ffff">#80ffff</option><option style="background-color: rgb(128, 255, 191);" value="80ffbf">#80ffbf</option><option style="background-color: rgb(128, 255, 128);" value="80ff80">#80ff80</option><option style="background-color: rgb(128, 255, 64);" value="80ff40">#80ff40</option><option style="background-color: rgb(128, 255, 0);" value="80ff00">#80ff00</option><option style="background-color: rgb(128, 191, 255);" value="80bfff">#80bfff</option><option style="background-color: rgb(128, 191, 191);" value="80bfbf">#80bfbf</option><option style="background-color: rgb(128, 191, 128);" value="80bf80">#80bf80</option><option style="background-color: rgb(128, 191, 64);" value="80bf40">#80bf40</option><option style="background-color: rgb(128, 191, 0);" value="80bf00">#80bf00</option><option style="background-color: rgb(128, 128, 255);" value="8080ff">#8080ff</option><option style="background-color: rgb(128, 128, 191);" value="8080bf">#8080bf</option><option style="background-color: rgb(128, 128, 128);" value="808080">#808080</option><option style="background-color: rgb(128, 128, 64);" value="808040">#808040</option><option style="background-color: rgb(128, 128, 0);" value="808000">#808000</option><option style="background-color: rgb(128, 64, 255);" value="8040ff">#8040ff</option><option style="background-color: rgb(128, 64, 191);" value="8040bf">#8040bf</option><option style="background-color: rgb(128, 64, 128);" value="804080">#804080</option><option style="background-color: rgb(128, 64, 64);" value="804040">#804040</option><option style="background-color: rgb(128, 64, 0);" value="804000">#804000</option><option style="background-color: rgb(128, 0, 255);" value="8000ff">#8000ff</option><option style="background-color: rgb(128, 0, 191);" value="8000bf">#8000bf</option><option style="background-color: rgb(128, 0, 128);" value="800080">#800080</option><option style="background-color: rgb(128, 0, 64);" value="800040">#800040</option><option style="background-color: rgb(128, 0, 0);" value="800000">#800000</option><option style="background-color: rgb(64, 255, 255);" value="40ffff">#40ffff</option><option style="background-color: rgb(64, 255, 191);" value="40ffbf">#40ffbf</option><option style="background-color: rgb(64, 255, 128);" value="40ff80">#40ff80</option><option style="background-color: rgb(64, 255, 64);" value="40ff40">#40ff40</option><option style="background-color: rgb(64, 255, 0);" value="40ff00">#40ff00</option><option style="background-color: rgb(64, 191, 255);" value="40bfff">#40bfff</option><option style="background-color: rgb(64, 191, 191);" value="40bfbf">#40bfbf</option><option style="background-color: rgb(64, 191, 128);" value="40bf80">#40bf80</option><option style="background-color: rgb(64, 191, 64);" value="40bf40">#40bf40</option><option style="background-color: rgb(64, 191, 0);" value="40bf00">#40bf00</option><option style="background-color: rgb(64, 128, 255);" value="4080ff">#4080ff</option><option style="background-color: rgb(64, 128, 191);" value="4080bf">#4080bf</option><option style="background-color: rgb(64, 128, 128);" value="408080">#408080</option><option style="background-color: rgb(64, 128, 64);" value="408040">#408040</option><option style="background-color: rgb(64, 128, 0);" value="408000">#408000</option><option style="background-color: rgb(64, 64, 255);" value="4040ff">#4040ff</option><option style="background-color: rgb(64, 64, 191);" value="4040bf">#4040bf</option><option style="background-color: rgb(64, 64, 128);" value="404080">#404080</option><option style="background-color: rgb(64, 64, 64);" value="404040">#404040</option><option style="background-color: rgb(64, 64, 0);" value="404000">#404000</option><option style="background-color: rgb(64, 0, 255);" value="4000ff">#4000ff</option><option style="background-color: rgb(64, 0, 191);" value="4000bf">#4000bf</option><option style="background-color: rgb(64, 0, 128);" value="400080">#400080</option><option style="background-color: rgb(64, 0, 64);" value="400040">#400040</option><option style="background-color: rgb(64, 0, 0);" value="400000">#400000</option><option style="background-color: rgb(0, 255, 255);" value="00ffff">#00ffff</option><option style="background-color: rgb(0, 255, 191);" value="00ffbf">#00ffbf</option><option style="background-color: rgb(0, 255, 128);" value="00ff80">#00ff80</option><option style="background-color: rgb(0, 255, 64);" value="00ff40">#00ff40</option><option style="background-color: rgb(0, 255, 0);" value="00ff00">#00ff00</option><option style="background-color: rgb(0, 191, 255);" value="00bfff">#00bfff</option><option style="background-color: rgb(0, 191, 191);" value="00bfbf">#00bfbf</option><option style="background-color: rgb(0, 191, 128);" value="00bf80">#00bf80</option><option style="background-color: rgb(0, 191, 64);" value="00bf40">#00bf40</option><option style="background-color: rgb(0, 191, 0);" value="00bf00">#00bf00</option><option style="background-color: rgb(0, 128, 255);" value="0080ff">#0080ff</option><option style="background-color: rgb(0, 128, 191);" value="0080bf">#0080bf</option><option style="background-color: rgb(0, 128, 128);" value="008080">#008080</option><option style="background-color: rgb(0, 128, 64);" value="008040">#008040</option><option style="background-color: rgb(0, 128, 0);" value="008000">#008000</option><option style="background-color: rgb(0, 64, 255);" value="0040ff">#0040ff</option><option style="background-color: rgb(0, 64, 191);" value="0040bf">#0040bf</option><option style="background-color: rgb(0, 64, 128);" value="004080">#004080</option><option style="background-color: rgb(0, 64, 64);" value="004040">#004040</option><option style="background-color: rgb(0, 64, 0);" value="004000">#004000</option><option style="background-color: rgb(0, 0, 255);" value="0000ff">#0000ff</option><option style="background-color: rgb(0, 0, 191);" value="0000bf">#0000bf</option><option style="background-color: rgb(0, 0, 128);" value="000080">#000080</option><option style="background-color: rgb(0, 0, 64);" value="000040">#000040</option><option style="background-color: rgb(0, 0, 0);" value="000000">#000000</option></select>
<img src="./styles/abbcode/images/dots.gif" alt="" class="btnbbcode3 dot">
<input class="button2" name="bbpalette" id="bbpalette" value="Couleur de la police" onclick="change_palette();" title="Couleur de la police: [color=red]texte[/color] Astuce : vous pouvez également utiliser color=#FF0000" type="button">
<img src="./styles/abbcode/images/dots.gif" alt="" class="btnbbcode3 dot">
</td>
</tr>
</tbody></table><!-- MOD : MSSTI ABBC3 (v3.0.13) - End //-->
</div>
Statistiques: Posté par Geronimo — Jeu 21 Nov 2013 22:48
Statistiques: Posté par darky — Jeu 21 Nov 2013 16:40
Statistiques: Posté par Geronimo — Mer 20 Nov 2013 02:36
Statistiques: Posté par Geronimo — Mer 20 Nov 2013 02:24
Statistiques: Posté par harlan68 — Lun 4 Mar 2013 10:12
- <h1>{SITENAME}</h1>
- <p>{SITE_DESCRIPTION}</p>
Statistiques: Posté par darky — Lun 25 Fév 2013 17:40
Statistiques: Posté par harlan68 — Mar 19 Fév 2013 23:34