/**************************************************** *Keywords found whithin timeLine
 ****************************************************/
var kw = new Array() ;
kw[0] = "key9|agence de notation";
kw[1] = "key0|développement durable";
kw[2] = "key8|Gaz à effet de serre";
kw[3] = "key6|grenelle de l'environnement";
kw[4] = "key11|la politique environnementale de l'Etat";
kw[5] = "key1|les critères de durabilité";
kw[6] = "key3|les indices labelisés développement durable";
kw[7] = "key10|les initiatives privées";
kw[8] = "key4|les nouvelles technologies";
kw[9] = "key2|les placements verts";
kw[10] = "key7|Nicholas Stern";
kw[11] = "key5|éco-transition";
kw[12] = "key12|écologie moteur de compétitivité";
//End of Data

function loadKeywords() {
	document.quotesSearch.quotesSearchCombo.options.length = kw.length+1;
	document.quotesSearch.quotesSearchCombo.options[0].Value = 0;
	document.quotesSearch.quotesSearchCombo.options[0].text = "-----";
	for(i=0,j=1;i<kw.length;i++,j++) {
		document.quotesSearch.quotesSearchCombo.options[j].Value = kw[i].split("|")[0];
		document.quotesSearch.quotesSearchCombo.options[j].text = truncate(kw[i].split("|")[1], 35);
		document.quotesSearch.quotesSearchCombo.options[j].title = kw[i].split("|")[1];
	}
}

function loadQuotes() {
	var cmb = document.quotesSearch.quotesSearchCombo;
	if(cmb.selectedIndex==0) {
		quotesResult.location.href="../_libraries/_quoteKeywords/_blank.html";
	} else {
		quotesResult.location.href="../_libraries/_quoteKeywords/"+cmb.options[cmb.selectedIndex].Value+".html";
	}
}

var oDiv;

function rollOn(arg) {
	arg.className = 'blcCitationOver';
	oDiv = arg;
}

function rollOut() {
	if(typeof(oDiv)!='undefined') {
		oDiv.className = 'blcCitation';
	}
}

function goToECU() {
	a = goToECU.arguments;
	top.document.location.href = "../../FR/ECU/index.html?"+a[0]+"|"+a[1]+"||||"+a[2]+"|"+a[3]+"||||"+a[4];
}

var oSelected = '';

function selectRes(arg, tc, tcOut) {
	if(oSelected!=''&&arg!=oSelected)	{	document.getElementById(oSelected).className = 'blcCitation'; }
	document.getElementById(arg).className = 'blcCitationOn';
	oSelected = arg;
	parent.goTc(tc);
	parent.outline.location.hash = "#a"+tcOut;
}


