﻿<!-- 

/* --- Texte début --- */

r_aide = "Utiliser ces boutons pour inserer du code.";
r_action = "Type d\'action.";

action_b1 = "Selection avant tout la zone à ";
aide_b1 = "Mettre le texte en ";

/* --- Texte d'aide --- */

g_aide = aide_b1 + "gras : [g]texte[/g]";
g_action = action_b1+"mettre en gras.";

i_aide = aide_b1 + "italique : [i]texte[/i]";
i_action = action_b1 + "mettre en italique.";

s_aide = "Souligner le texte : [s]texte[/s]";
s_action = action_b1 + "souligner.";

b_aide = "Barrer le texte : [b]texte[/b]";
b_action = action_b1 + "barrer.";

ss_aide = "Double souligner le texte : [ss]texte[/ss]";
ss_action = action_b1 + "double souligner.";

S_aide = "Placer une ligne au dessus le texte : [S]texte[/S]";
S_action = action_b1 + "mettre avec une ligne au dessus.";

couleur_aide = "Changer la couleur du texte : [couleur=\"code couleur\"]texte[/surligne]";
couleur_action = action_b1 + "mettre couleur.";

surligne_aide = "Surligner le texte : [surligne=\"code couleur\"]texte[/surligne]";
surligne_action = action_b1 + "à surligner.";

taille_aide = "Changer la taille du texte : [taille=\"code taille\"]texte[/taille]";
taille_action = action_b1 + "modifier de taille de caractères.";

MAJ_aide = aide_b1 + "majuscule : [MAJ]texte[/MAJ]";
MAJ_action = action_b1 + "mettre en majuscule.";

maj_aide = aide_b1 + "petite majuscule : [maj]texte[/maj]";
maj_action = action_b1 + "mettre en petite majuscule.";

min_aide = aide_b1 + "minuscule : [min]texte[/min]";
min_action = action_b1 + "mettre en minuscule.";

exp_aide = aide_b1 + "exposant : [exp]texte[/exp]";
exp_action = action_b1 + "mettre en exposant.";

ind_aide = aide_b1 + "indice : [ind]texte[/ind]";
ind_action = action_b1 + "mettre en indice.";

c_aide = "Centrer le texte : [c]texte[/c]";
c_action = action_b1 + "center.";

j_aide = "Justifier le texte : [j]texte[/j]";
j_action = action_b1 + "justifier.";

n_aide = "Aligner le texte à gauche (par défaut il est justifié [n]texte[/n]";
n_action = action_b1 + "aligner à gauche. (Par défaut le texte est déjà justifié)";

d_aide = "Aligner le texte à droite : [d]texte[/d]";
d_action = action_b1 + "aligner à droite.";

lien_aide = "Créer une lien : [Lien=\url:------|titre:------\"]texte[/Lien]";
lien_action = action_b1 + "transformer en lien.";

img_aide = "Mettre une image : [Img=\"url:------|h:------|l:------|titre:------|alt:------|lien:------\"].";
img_action = "Placer le curseur là où vous souhaitez place l'image.";

citer_aide = "Citer un texte : [Citer=\"auteur:------|date:------|source:------|source_url:------\"]texte[/Citer]";
citer_action = "Placer le curseur là où vous souhaitez placé la citation ou selection un texte à transformer en citation.";

cacher_aide = aide_b1 + "Révélation d'information : [info=\"révélation\"]texte[/info]";
cacher_action = action_b1 + "cacher.";

code_aide = "Caractères de mêmes tailles, tabulations autoritées ainsi que les espaces répétées [code]texte[/code].";
code_action = action_b1 + "ecrire sous forme de code.";

dico_aide = "Fait un lien : Chercher ce mot le dictionnaire. {{texte}}.";
dico_action = action_b1 + "tranformer en lien vers le dictionnaire.";

ruby_aide = "Permet l'ajout de furigana aux kanji ou symboles : [Ruby=\"h:------|b:------\"]kanji[/Ruby].";
ruby_action = "Selection les kanji auquels vous souhaitez ajouter les furigana.";

qr_aide = "Créer une question avec réponse caché : [question=\"la question\"]la réponse[/question].";
qr_action = "Créer une balise question avec réponse masquée : mise en forme automatique.";

dos_aide = "Générer une boîte dossier avec onglet  : [dossier]Contenu du dossier[/dossier].";
dos_action = "Placer le curseur là où vous souhaitez créer un ensemble de fiches-dossier pré-formatée.";

masquer_aide = "Créer une zone non visible : [masquer=\"Nom du lien\"]Contenu masqué[/masquer].";
masquer_action = "Créer un lien a qui affiche le contenu masquée";

membre_aide = "Créer une zone non visible : [Membre=\"niv:0~9|ids:1,5,9,255|âge:18\"]Contenu masqué[/Membre].";
membre_action = "Créer une balise membre qui emglobe le texte soumis à condition.";

let_aide = "Ajouter une lettre liée, lettre accentuée ou voyelles longue (japonaise) dans le texte.";
let_action = "Se placer là vous souhaitez la voir apparaître.";

cro_aide = "Ajoute un type choisie de guillemets/crochets dans le texte.";
cro_action = "Selectionner les textes à encadrer de guillemets/crochets.";

symb_aide = "Ajouter un symbole dans le texte.";
symb_action = "Se placer là vous souhaitez le voir apparaître.";


/* ------ */

function helpline(aide) {
	
	document.getElementById('ik_aide').value = eval(aide + "_aide");
	document.getElementById('ik_action').value = eval(aide + "_action");
}

function Remplace(texte,a,b) {
	var i=0;
	while (i!=-1) {
		i = texte.indexOf(a,i);
		if (i >= 0) {
			texte = texte.substring(0,i) + b + texte.substring(i + a.length);
			i += b.length;
		}
	}
	return texte;
}

function balise_plus (texte, mode) {
	if (mode == 1) {
		texte = Remplace(texte, "\n", '[br]');
		texte = Remplace(texte, "\t", '[tb]'); 
	} else {
		texte = Remplace(texte, '[br]', "\n");
		texte = Remplace(texte, '[tb]', "\t");
	}
	return texte;
}
function symbole(code) {
	balise_simple(code,'');
}
function balise_simple(repdeb, repfin) {
	var input = document.forms['Ecrire_Commentaire'].elements['Texte'];
	var scroll = input.scrollTop;
	input.focus();
	/* pour l'Explorer Internet */
	if(typeof document.selection != 'undefined') {
		/* Insertion du code de formatage */
		var range = document.selection.createRange();
		var insText = range.text;
		range.text = repdeb + insText + repfin;
		/* Ajustement de la position du curseur */
		range = document.selection.createRange();
		if (insText.length == 0) {
			range.move('character', -repfin.length);
		} else {
			range.moveStart('character', repdeb.length + insText.length + repfin.length);
		}
		range.select();
	}
	/* pour navigateurs plus récents basée sur Gecko*/
	else if(typeof input.selectionStart != 'undefined') {
		/* Insertion du code de formatage */
		var start = input.selectionStart;
		var end = input.selectionEnd;
		var insText = input.value.substring(start, end);
		input.value = input.value.substr(0, start) + repdeb + insText + repfin + input.value.substr(end);
		/* Ajustement de la position du curseur */
		var pos;
		if (insText.length == 0) {
			pos1 = pos2 = start + repdeb.length;
		} else {
			pos1 = start + repdeb.length;
			pos2 = start + repdeb.length + insText.length;
		}
		input.selectionStart = pos1;
		input.selectionEnd = pos2;
	}
	/* pour les autres navigateurs */
	else {
		alert('désolé mais ce script n’est pas supporté par votre navigateur. Trop ancien ou n’a pas les fonctions nécessaires.');
	}
	input.scrollTop = scroll;
}

function balise_complexe(code) {
	//
	var input = document.forms['Ecrire_Commentaire'].elements['Texte'];
	input.focus();
	/* pour l'Explorer Internet */
	if(typeof document.selection != 'undefined') {
		var range = document.selection.createRange();
		var insText = range.text;
		var start = 0;
		var end   = 0;
		var nav   = '_IE';
	}
	/* pour navigateurs plus récents basés sur Gecko*/
	else if(typeof input.selectionStart != 'undefined') {
		/* Insertion du code de formatage */
		var start	= input.selectionStart;
		var end		= input.selectionEnd;
		var insText = input.value.substring(start, end);
		var nav = '';
	}
	/* pour les autres navigateurs */
	else {
		alert('désolé mais ce script n’est pas supporté par votre navigateur. Trop ancien ou n’a pas les fonctions nécessaires.');
	}

	// en fonction de la requete
	switch (code) {
		case 'lien' : {
			popUp('/V3.1/Php/Ik_code/lien'+nav+'.php?start='+start+'&end='+end+'&texte='+balise_plus(insText, 1),'ik_code','width=400,height=200,left=250');
			break;
		}
		case 'citer' : {
			popUp('/V3.1/Php/Ik_code/citer'+nav+'.php?start='+start+'&end='+end+'&texte='+balise_plus(insText, 1),'ik_code','width=400,height=270,left=250');
			break;
		}
		case 'question' : {
			popUp('/V3.1/Php/Ik_code/question'+nav+'.php?start='+start+'&end='+end+'&texte='+balise_plus(insText, 1),'ik_code','width=400,height=330,left=250');
			break;
		}
		case 'img' : {
			popUp('/V3.1/Php/Ik_code/image'+nav+'.htm','ik_code','width=450,height=280,left=250');
			break;
		}
		case 'ruby' : {
			popUp('/V3.1/Php/Ik_code/ruby'+nav+'.php?start='+start+'&end='+end+'&texte='+balise_plus(insText, 1),'ik_code','width=400,height=150,left=250');
			break;
		}
		case 'dossier' : {
			popUp('/V3.1/Php/Ik_code/dossier.php','ik_code','width=630,height=350,left=250');
			break;
		}
		case 'couleur' :
		case 'surligne' : {
		   popUp('/V3.1/Php/Ik_code/couleur'+nav+'.php?mode='+code,'ik_code','width=290,height=360,left=250');
		}
	}
}
function ecrire(deb, fin, text) {
	var input = document.forms['Ecrire_Commentaire'].elements['Texte'];
	input.value = input.value.substring(0, deb)+text+input.value.substring(fin, input.value.length);
}

function ecrire_IE(text) {
	var input = document.forms['Ecrire_Commentaire'].elements['Texte'];
	/* Insertion du code de formatage */
	var range = document.selection.createRange();
	var insText = range.text;
	range.text = text;
	/* Ajustement de la position du curseur */
	range = document.selection.createRange();
	if (insText.length == 0) {
		range.move('character', 0);
	} else {
		range.moveStart('character', insText.length );
	}
	range.select();
}



function MontrerMenuIk(strMenu) {
	//AnnulerCacherIk();
	if (document.getElementById(strMenu)) 
		with (document.getElementById(strMenu).style)
			visibility="visible";
}
function AnnulerCacherIk() {
	if (timeout) {
		clearTimeout(timeout);
	}
}
function CacherMenusIk() {
	for(i=1;i<=6;i++) 
		if (document.getElementById("ik_"+i))
			with(document.getElementById("ik_"+i).style)
				visibility="hidden";
}
navigateur = navigator.appName;

// boutons
document.write('<center><div style="width:510px;text-align:left">' + 
'<div style="height:30px">' +
'<img border="0" src="/V3.1/Skins/Ikilote_35/C_Gras.png"			 width="30" height="30" onclick="balise_simple(\'[g]\', \'[/g]\');"		onmouseover="helpline(\'g\')" onmouseout="helpline(\'r\')"  title="Gras" />' +
'<img border="0" src="/V3.1/Skins/Ikilote_35/C_Italique.png"		 width="30" height="30" onclick="balise_simple(\'[i]\', \'[/i]\');"		onmouseover="helpline(\'i\')" onmouseout="helpline(\'r\')"  title="Italique" />' +
'<img border="0" src="/V3.1/Skins/Ikilote_35/C_Souligner.png"		 width="30" height="30" onclick="balise_simple(\'[s]\', \'[/s]\');"		onmouseover="helpline(\'s\')" onmouseout="helpline(\'r\')"  title="Souligner" />' +
'<img border="0" src="/V3.1/Skins/Ikilote_35/C_Double-Souligner.png" width="30" height="30" onclick="balise_simple(\'[ss]\', \'[/ss]\');"	onmouseover="helpline(\'ss\')" onmouseout="helpline(\'r\')"  title="Double souligner" />' +
'<img border="0" src="/V3.1/Skins/Ikilote_35/C_Surligner.png"		 width="30" height="30" onclick="balise_simple(\'[S]\', \'[/S]\');"		onmouseover="helpline(\'S\')" onmouseout="helpline(\'r\')"  title="Ligne au dessus" />' +
'<img border="0" src="/V3.1/Skins/Ikilote_35/C_Barrer.png"			 width="30" height="30" onclick="balise_simple(\'[b]\', \'[/b]\');"		onmouseover="helpline(\'b\')" onmouseout="helpline(\'r\')"  title="Barrer" />' +
'<img border="0" src="/V3.1/Skins/Ikilote_35/C_Couleur.png"			 width="30" height="30" onclick="balise_complexe(\'couleur\');"			onmouseover="helpline(\'couleur\')" onmouseout="helpline(\'r\')"  title="Couleur" />' +
'<img border="0" src="/V3.1/Skins/Ikilote_35/C_Marquer.png"			 width="30" height="30" onclick="balise_complexe(\'surligne\');"		onmouseover="helpline(\'surligne\')" onmouseout="helpline(\'r\')"  title="Surligner" />' +
'<img border="0" src="/V3.1/Skins/Ikilote_35/C_Taille.png"			 width="30" height="30" onclick="MontrerMenuIk(\'ik_1\');document.forms[\'Ecrire_Commentaire\'].police_t.selectedIndex=30;document.forms[\'Ecrire_Commentaire\'].police_t.selectedIndex=14;document.forms[\'Ecrire_Commentaire\'].police_t.selectedIndex=20;"	onmouseover="helpline(\'taille\');" onmouseout="helpline(\'r\');CacherMenusIk();" title="Taille" />' +
'<div style="visibility:hidden;position:absolute;'+((navigateur.indexOf('Microsoft') == -1) ? 'margin-left:240px;margin-top:-5px' : 'margin-left:-30px;margin-top:30px')+'" id="ik_1" onmouseover="MontrerMenuIk(\'ik_1\');" onmouseout="CacherMenusIk();">'+
'<select size="12" onchange="balise_simple(\'[taille=&quot;\'+this.options[this.selectedIndex].value+\'&quot;]\', \'[/taille]\');CacherMenusIk();" name="police_t" >');
for (i=2; i<=50; i+=.5) {
	document.write('<option value="'+i+'" '+((i == 30) ? ' selected' : '')+'>'+i+'</option>');
}
document.write('</select></div>' +
'<img border="0" src="/V3.1/Skins/Ikilote_35/C_Majuscules.png"		 width="30" height="30" onclick="balise_simple(\'[MAJ]\', \'[/MAJ]\');"	onmouseover="helpline(\'MAJ\')" onmouseout="helpline(\'r\')"  title="Majuscule" />' +
'<img border="0" src="/V3.1/Skins/Ikilote_35/C_Petites_Majuscules.png" width="30" height="30" onclick="balise_simple(\'[maj]\', \'[/maj]\');" onmouseover="helpline(\'maj\')" onmouseout="helpline(\'r\')"  title="Petite Majuscule" />' +
'<img border="0" src="/V3.1/Skins/Ikilote_35/C_Minuscules.png"		 width="30" height="30" onclick="balise_simple(\'[min]\', \'[/min]\');"	onmouseover="helpline(\'min\')" onmouseout="helpline(\'r\')"  title="Miniscule" />' +
'<img border="0" src="/V3.1/Skins/Ikilote_35/C_Exposant.png"		 width="30" height="30" onclick="balise_simple(\'[exp]\', \'[/exp]\');"	onmouseover="helpline(\'exp\')" onmouseout="helpline(\'r\')"  title="Exposant" />' +
'<img border="0" src="/V3.1/Skins/Ikilote_35/C_Indice.png"			 width="30" height="30" onclick="balise_simple(\'[ind]\', \'[/ind]\');"	onmouseover="helpline(\'ind\')" onmouseout="helpline(\'r\')"  title="Indice" />' +
'</div><div style="height:30px">' + 
'<img border="0" src="/V3.1/Skins/Ikilote_35/C_Gauche.png"			 width="30" height="30" onclick="balise_simple(\'[n]\', \'[/n]\');"		onmouseover="helpline(\'n\')" onmouseout="helpline(\'r\')"  title="Aligner à gauche" />' +
'<img border="0" src="/V3.1/Skins/Ikilote_35/C_Centrer.png"			 width="30" height="30" onclick="balise_simple(\'[c]\', \'[/c]\');"		onmouseover="helpline(\'c\')" onmouseout="helpline(\'r\')"  title="Centrer" />' +
'<img border="0" src="/V3.1/Skins/Ikilote_35/C_Droite.png"			 width="30" height="30" onclick="balise_simple(\'[d]\', \'[/d]\');"		onmouseover="helpline(\'d\')" onmouseout="helpline(\'r\')"  title="Aligner à droite" />' +
'<img border="0" src="/V3.1/Skins/Ikilote_35/C_Lien.png"			 width="30" height="30" onclick="balise_complexe(\'lien\');"			onmouseover="helpline(\'lien\')" onmouseout="helpline(\'r\')"  title="Lien" />' +
'<img border="0" src="/V3.1/Skins/Ikilote_35/C_Image.png"			 width="30" height="30" onclick="balise_complexe(\'img\');"				onmouseover="helpline(\'img\')" onmouseout="helpline(\'r\')"  title="Image" />' +
'<img border="0" src="/V3.1/Skins/Ikilote_35/C_Citer.png"			 width="30" height="30" onclick="balise_complexe(\'citer\');"			onmouseover="helpline(\'citer\')" onmouseout="helpline(\'r\')"  title="Citer" />' +

'<img border="0" src="/V3.1/Skins/Ikilote_35/C_Cacher.png"			 width="30" height="30" onclick="MontrerMenuIk(\'ik_6\');document.forms[\'Ecrire_Commentaire\'].cacher_t.selectedIndex=0;"	onmouseover="helpline(\'cacher\');" onmouseout="helpline(\'r\');CacherMenusIk();" title="Cacher une Information">' + 
'<div style="visibility:hidden;position:absolute;'+((navigateur.indexOf('Microsoft') == -1) ? 'margin-left:180px;margin-top:-5px' : 'margin-left:-30px;margin-top:30px')+'" id="ik_6" onmouseover="MontrerMenuIk(\'ik_6\');" onmouseout="CacherMenusIk();">'  +
'<select size="4" style="height:70px" onchange="balise_simple(this.options[this.selectedIndex].value, this.options[this.selectedIndex].id);CacherMenusIk();" name="cacher_t" >' + 
'<option style="color=green;">Faites votre choix :</option>' + 
'<option value="[info=&quot;Révélation&quot;]" id="[/info]">Révélation</option>' + 
'<option value="[info=&quot;Secret&quot;]" id="[/info]">Secret</option>' + 
'<option value="[info=&quot;Indice&quot;]" id="[/info]">Indice</option>' + 
'</select></div>' + 

'<img border="0" src="/V3.1/Skins/Ikilote_35/C_Code.png"			 width="30" height="30" onclick="balise_simple(\'[code]\', \'[/code]\');" onmouseover="helpline(\'code\')" onmouseout="helpline(\'r\')"  title="Code" />' +

'<img border="0" src="/V3.1/Skins/Ikilote_35/C_Dico.png"			 width="30" height="30" onclick="MontrerMenuIk(\'ik_2\');document.forms[\'Ecrire_Commentaire\'].dico_t.selectedIndex=0;"	onmouseover="helpline(\'dico\');" onmouseout="helpline(\'r\');CacherMenusIk();" title="Dictionnaire">' + 
'<div style="visibility:hidden;position:absolute;'+((navigateur.indexOf('Microsoft') == -1) ? 'margin-left:230px;margin-top:-5px' : 'margin-left:-30px;margin-top:30px')+'" id="ik_2" onmouseover="MontrerMenuIk(\'ik_2\');" onmouseout="CacherMenusIk();">' + 
'<select size="7" style="height:150px" onchange="balise_simple(this.options[this.selectedIndex].value, this.options[this.selectedIndex].id);CacherMenusIk();" name="dico_t" >' + 
'<option style="color=green;">Faites votre choix :</option>' + 
'<optgroup label="Japonais → Français">' + 
'<option value="{{" id="}}">Recherche strict</option>' + 
'<option value="{|" id="|}">Commence par ...</option>' + 
'<option value="{*" id="*}">Contient ...</option>' + 
'<optgroup label="Japonais → Français">' + 
'<option value="{[" id="]}">Recherche strict</option>' + 
'<option value="{`" id="`}">Commence par ...</option>' + 
'<option value="{(" id=")}">Contient ...</option>' + 
'</select></div>' + 


'<img border="0" src="/V3.1/Skins/Ikilote_35/C_Ruby.png"		 	 width="30" height="30" onclick="balise_complexe(\'ruby\');"     onmouseover="helpline(\'ruby\')" onmouseout="helpline(\'r\')"  title="Ruby (Furigana)">' + 
'<img border="0" src="/V3.1/Skins/Ikilote_35/C_Question.png"		 width="30" height="30" onclick="balise_complexe(\'question\');" onmouseover="helpline(\'qr\')" onmouseout="helpline(\'r\')"  title="Question / Réponse">' + 
'<img border="0" src="/V3.1/Skins/Ikilote_35/C_Onglets.png"		 	 width="30" height="30" onclick="balise_complexe(\'dossier\');"  onmouseover="helpline(\'dos\')" onmouseout="helpline(\'r\')"  title="Dossier (Ficher à onglets)">' + 


'<img border="0" src="/V3.1/Skins/Ikilote_35/C_Lettres.png"		 	 width="30" height="30" onclick="MontrerMenuIk(\'ik_3\');document.forms[\'Ecrire_Commentaire\'].let_t.selectedIndex=0;"  onmouseover="helpline(\'let\')" onmouseout="helpline(\'r\');CacherMenusIk();"  title="Dossier (Ficher à onglets)">' + 
'<div style="visibility:hidden;position:absolute;'+((navigateur.indexOf('Microsoft') == -1) ? 'margin-left:330px;margin-top:-5px' : 'margin-left:-30px;margin-top:30px')+'" id="ik_3" onmouseover="MontrerMenuIk(\'ik_3\');" onmouseout="CacherMenusIk();">'  +
'<select size="7" style="height:150px" onchange="balise_simple(this.options[this.selectedIndex].value, \'\');CacherMenusIk();" name="let_t" >'+
'<option style="color=green;">Faites votre choix :</option>' + 
'<optgroup label="Minuscules">' + 
'<option value="œ">œ</option>' + 
'<option value="æ">æ</option>' + 
'<option value="ā">ā</option>' + 
'<option value="ī">ī</option>' + 
'<option value="ū">ū</option>' + 
'<option value="ē">ē</option>' + 
'<option value="ō">ō</option>' + 
'<optgroup label="Majuscules">' + 
'<option value="Œ">Œ</option>' + 
'<option value="Æ">Æ</option>' + 
'<option value="Ç">Ç</option>' + 
'<option value="É">É</option>' + 
'<option value="È">È</option>' + 
'<option value="À">À</option>' + 
'<option value="Ā">Ā</option>' + 
'<option value="Ī">Ī</option>' + 
'<option value="Ū">Ū</option>' + 
'<option value="Ē">Ē</option>' + 
'<option value="Ō">Ō</option>' + 
'</select></div>' + 

'<img border="0" src="/V3.1/Skins/Ikilote_35/C_Crochets.png"		 	 width="30" height="30" onclick="MontrerMenuIk(\'ik_4\');document.forms[\'Ecrire_Commentaire\'].cro_t.selectedIndex=0;"  onmouseover="helpline(\'cro\')" onmouseout="helpline(\'r\');CacherMenusIk();"  title="Dossier (Ficher à onglets)">' + 
'<div style="visibility:hidden;position:absolute;'+((navigateur.indexOf('Microsoft') == -1) ? 'margin-left:360px;margin-top:-5px' : 'margin-left:-30px;margin-top:30px')+'" id="ik_4" onmouseover="MontrerMenuIk(\'ik_4\');" onmouseout="CacherMenusIk();">'  + 
'<select size="7" style="height:150px" onchange="balise_simple(this.options[this.selectedIndex].value, this.options[this.selectedIndex].id);CacherMenusIk();" name="cro_t" >' + 
'<option style="color=green;">Faites votre choix :</option>' + 
'<optgroup label="Guillemets">' +
'<option value="« " id=" »">« » : Françaises</option>' + 
'<option value="“" id="”">“ ” : Anglaises</option>' + 
'<option value="„" id="“">„ “ : Allemandes</option>' + 
'<option value="「" id="」">「　」 : Japonaises</option>' + 
'<optgroup label="Autres">' + 
'<option value="‹" id="›">‹› : Françaises simples</option>' + 
'<option value="《" id="》">《 》 : Françaises (asie)</option>' + 
'<option value="≪" id="≫">≪ ≫ : Françaises (asie)</option>' + 
'<option value="—" id="—">— — : Tiret</option>' + 
'<option value="‘" id="’">‘ ’ : Anglaises simples</option>' + 
'<option value="‵" id="′">‵ ′ : Primes</option>' + 
'<option value="‷" id="‴">‷ ‴ : Triple-primes</option>' + 
'<option value="『" id="』">『 』 : Japonaises</option>' + 
'<option value="〝" id="〟">〝 〟 : Japonaises</option>' + 
'<option value="【" id="】">【 】 : Crochets</option>' + 
'</select></div>' +

'<img border="0" src="/V3.1/Skins/Ikilote_35/C_Symboles.png"		 	 width="30" height="30" onclick="MontrerMenuIk(\'ik_5\');document.forms[\'Ecrire_Commentaire\'].symb_t.selectedIndex=0;"  onmouseover="helpline(\'symb\')" onmouseout="helpline(\'r\');CacherMenusIk();"  title="Dossier (Ficher à onglets)">' + 
'<div style="visibility:hidden;position:absolute;'+((navigateur.indexOf('Microsoft') == -1) ? 'margin-left:390px;margin-top:-5px' : 'margin-left:-30px;margin-top:30px')+'" id="ik_5" onmouseover="MontrerMenuIk(\'ik_5\');" onmouseout="CacherMenusIk();">' + 
'<select size="7" style="height:150px" onchange="balise_simple(this.options[this.selectedIndex].value, \'\');CacherMenusIk();" name="symb_t" >' + 
'<option style="color=green;">Faites votre choix :</option>' + 
'<optgroup label="Étoiles">' + 
'<option value="☆">☆　(星)</option>' + 
'<option value="★">★　(星)</option>' + 
'<option value="※">※　(星/米印)</option>' + 
'<option value="⁂">⁂ (星)</option>' + 
'<optgroup label="Cœurs">' + 
'<option value="♥">♥　(ハート)</option>' + 
'<option value="♡">♡　(ハート)</option>' + 
'<optgroup label="Musique">' + 
'<option value="♪">♪　(音譜)</option>' + 
'<option value="♬">♬　(音譜)</option>' + 
'<option value="♫">♫　(音譜)</option>' + 
'<option value="♩">♩　(音譜)</option>' + 
'<optgroup label="Flèches">' +
'<option value="→">→ (右)</option>' + 
'<option value="⇒">⇒ (右)</option>' + 
'<option value="↑">↑ (上)</option>' + 
'<option value="⇑">⇑ (上)</option>' + 
'<option value="←">← (左)</option>' + 
'<option value="⇐">⇐ (左)</option>' + 
'<option value="↓">↓ (下)</option>' + 
'<option value="⇓">⇓ (下)</option>' + 
'<optgroup label="Autres">' + 
'<option value="☏">☏ (てる)</option>' + 
'<option value="☎">☎ (てる)</option>' + 
'<option value="♨">♨ (温泉)</option>' + 
'<option value="∞">∞　(無限)</option>' + 
'<option value="♀">♀　(めす)</option>' + 
'<option value="♂">♂　(おす)</option>' + 
'<option value="☯">☯　(陰陽)</option>' + 
'</select></div>' +

'</div>' + 
// Barre d'aide
'<input type="text" id="ik_aide" disabled style="font-size:7pt;width:510px;color:#000000;" value="Utiliser ses boutons pour inserer du code."><br />' + 
'<input type="text" id="ik_action" disabled style="font-size:7pt;width:510px;color:#000000;" value="Type d\'action.">' + 
'</div></center>');
-->