

var DHTML = (document.getElementById || document.all || document.layers);

function changeCol(question,col)
{
	if (!DHTML) return;
	var x = new getObj(question);
	x.style.backgroundColor = col;
	x.style.fontWeight = "bold";
}

function getObj(name)
{
  if (document.getElementById)
  {
  	this.obj = document.getElementById(name);
	this.style = document.getElementById(name).style;
  }
  else if (document.all)
  {
	this.obj = document.all[name];
	this.style = document.all[name].style;
  }
  else if (document.layers)
  {
   	this.obj = document.layers[name];
   	this.style = document.layers[name];
  }
}

function displayDetail(question,intitule)
{
  if (intitule!='null'&intitule!=null)
  {
  	alert(intitule);
  }
}
