function changeLinktext(idref){
	clearotherlinks();
	if (document.all){
		eval('document.all.' + idref + '.style.color = "#B5CA3F"');
	}else if (document.getElementById){
		eval('document.getElementById("' + idref + '").style.color = "#B5CA3F"');
	}else{
		eval('document.' + idref + '.color = "#B5CA3F"');
	}
}

function clearotherlinks(){
	if (document.all){
		document.all.m1.style.color = "#fff";
		document.all.m2.style.color = "#fff";
		document.all.m3.style.color = "#fff";
		document.all.m4.style.color = "#fff";
	}else if (document.getElementById){
		document.getElementById("m1").style.color = "#fff";
		document.getElementById("m2").style.color = "#fff";
		document.getElementById("m3").style.color = "#fff";
		document.getElementById("m4").style.color = "#fff";
	}else{
		document.m1.color = "#fff";
		document.m2.color = "#fff";
		document.m3.color = "#fff";
		document.m4.color = "#fff";
	}

}


function amendText(divId,newText) {
	if(document.getElementById){
		eval('document.getElementById("' + divId + '").innerHTML = "'+ newText +'"');
	} else if(document.all)	{
		eval('document.all.' + divId + '.innerHTML = "'+ newText +'"');
	} else {
		eval('document.layers.' + divId + '.document.open()');
		eval('document.layers.' + divId + '.document.write("'+ newText +'")');
		eval('document.layers.' + divId + '.document.close()');
	}
}