couleur = new Array ("#000000", "#F69900", "#880C09");
var a=0;
function change_coul()
{
	Titre=document.getElementById("votez");
	Titre.style.color=couleur[a];
	a++;
	if(a>2) a=0;
}
function interval_coul()
{
	interval=setInterval("change_coul()",250);
}

function AddSmiley(startTag,defaultText,endTag) 
{
   with(document.mycomments)
   {
      if (commenttexte.createTextRange) 
      {
         var text;
         commenttexte.focus(commenttexte.caretPos);
         commenttexte.caretPos = document.selection.createRange().duplicate();
         if(commenttexte.caretPos.text.length>0)
         {
            var sel = commenttexte.caretPos.text;
            var fin = '';
            while(sel.substring(sel.length-1, sel.length)==' ')
            {
               sel = sel.substring(0, sel.length-1)
               fin += ' ';
            }
            commenttexte.caretPos.text = startTag + sel + endTag + fin;
         }
         else
            commenttexte.caretPos.text = startTag+defaultText+endTag;
      }
      else commenttexte.value += startTag+defaultText+endTag;
   }
}

function changerVideo(idvideo)
{
	document.getElementById('video').innerHTML='<h2 id="h2clip">CLIPS VIDEO</h2><embed src="http://www.hollyzookradio.com/player/xml/mediaplayer.swf" width="320" height="240" allowscriptaccess="always" allowfullscreen="true" flashvars="height=240&amp;width=320&amp;file=rtmp://72.35.95.25/id9sarl&amp;id='+idvideo+'&amp;backcolor=0x5C0301&amp;frontcolor=0xFFFFFF&amp;autostart=true"></embed>'	;
}

function ajouterCommentaire()
{
	document.getElementById('formaddcomment').style.display='block';
}