// JavaScript Document

function setgras()

{

	txt = document.selection.createRange().text;

	txt = "<b>"+txt+"</b>";

	document.selection.createRange().text = txt;

}



function setita()

{

		txt = document.selection.createRange().text;

	txt = "<i>"+txt+"</i>";

	document.selection.createRange().text = txt;

}



function setlien()

{

	txt = document.selection.createRange().text;

	txt = "<a href='"+document.getElementById('lien').value+"' target='_blank'>"+txt+"</a>";

	document.selection.createRange().text = txt;

}



function setcolor1()

{

	txt = document.selection.createRange().text;

	txt = "<font color='#401505'>"+txt+"</font>";

	document.selection.createRange().text = txt;

}

function setcolor2()

{

	txt = document.selection.createRange().text;

	txt = "<font color='#DD4D07'>"+txt+"</font>";

	document.selection.createRange().text = txt;

}

function setcolor3()

{

	txt = document.selection.createRange().text;

	txt = "<font color='#aa7553'>"+txt+"</font>";

	document.selection.createRange().text = txt;

}

function PopupCentrer(page,largeur,hauteur,options) {

  var top=(screen.height-hauteur)/2;

  var left=(screen.width-largeur)/2;

  window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);

}

function popup_centrer(page,largeur,hauteur,options) {

  var top=(screen.height-hauteur)/2;

  var left=(screen.width-largeur)/2;

  window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);

}