// **********************************************************************//
// * Module Name	: Histor.js											*//
// * Release		: 1.0												*//
// * Date			: 20/10/2006										*//
// * Project		: AGSE_TT											*//
// * Author			: aCOSwt											*//
// * Description	: Historic Html Page management scripts		 		*//
// * History		: 1.0 : First Site Version							*//
// * Language		: JavaScript										*//
// * Compatibility	: FireFox 2 - Opera 9 - IE 7 - Konqueror 3			*//
// **********************************************************************//

// *********************** Global Statements ****************************//

var	ActiveYear;

// *********************** Page init ************************************//

function historinit(){

	var	tempsel, i, newsel, bckgc;

	ActiveYear=0;
	initPage(4,0,11);
	tempsel=document.getElementById("TEMPSEL");
	for(i=1989,bckgc=140;i<2008;i++,bckgc+=5){
		newsel=document.createElement("div");
		newsel.className="selector";
		newsel.style.backgroundColor="rgb("+bckgc+","+bckgc+","+bckgc+")";
		newsel.id=bckgc;
		newsel.name=i;
		newsel.innerHTML=i;
		newsel.onmouseover=function(){this.style.backgroundColor="#F6E600";};
		newsel.onmouseout=function(){this.style.backgroundColor="rgb("+this.id+","+this.id+","+this.id+")";};
		newsel.onclick=function(){ShowYear(this.name);};
		tempsel.appendChild(newsel);}}


// ********************** Show specific year details ********************//

function ShowYear(idyear){

	document.getElementById("DTL_"+ActiveYear).style.display="none";
	document.getElementById("DTL_"+idyear).style.display="block";
	ActiveYear=idyear;}