/****************************************************
 *Keywords found whithin timeLine
 ****************************************************/
var kw = new Array() ;
kw[0] = "key10|attractivité";
kw[1] = "key6|implication";
kw[2] = "key3|formation";
kw[3] = "key24|accessibilité";
kw[4] = "key28|outils d’évaluation";
kw[5] = "key16|créativité";
kw[6] = "key0|serious game";
kw[7] = "key5|immersion";
kw[8] = "key1|marché";
kw[9] = "key29|enseignants";
kw[10] = "key25|critères techniques";
kw[11] = "key8|personnalisation";
kw[12] = "key22|inégalité";
kw[13] = "key18|interfaces Homme/Machine";
kw[14] = "key17|gameplay";
kw[15] = "key7|expérimentation";
kw[16] = "key13|coûts réduits";
kw[17] = "key2|communication";
kw[18] = "key23|cadre pédagogique";
kw[19] = "key27|format";
kw[20] = "key21|travail en temps et budget contraint";
kw[21] = "key11|mobilité";
kw[22] = "key9|evaluation";
kw[23] = "key14|rendu 3D";
kw[24] = "key4|simulation";
//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 = 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;
}

