function ToggleInfos (id) {
	if (document.getElementById("FrontInfosRow_" + id).style.display == 'none') {
		document.getElementById("FrontInfosImg_" + id).src = "images/buttons/minus.gif";
		document.getElementById("FrontInfosRow_" + id).style.display = '';
		document.getElementById("FrontInfosImg_" + id).alt = "Details";
	} else {
		document.getElementById("FrontInfosImg_" + id).src = "images/buttons/plus.gif";
		document.getElementById("FrontInfosRow_" + id).style.display = "none";
		document.getElementById("FrontInfosImg_" + id).alt = "Details";
	}
}

function ToggleInfosHelp (id) {
	if (document.getElementById("FrontInfosRow_" + id).style.display == 'none') {
		document.getElementById("FrontInfosImg_" + id).src = "./images/buttons/minus.gif";
		document.getElementById("FrontInfosRow_" + id).style.display = '';
		document.getElementById("FrontInfosImg_" + id).alt = "Details";
	} else {
		document.getElementById("FrontInfosImg_" + id).src = "./images/buttons/plus.gif";
		document.getElementById("FrontInfosRow_" + id).style.display = "none";
		document.getElementById("FrontInfosImg_" + id).alt = "Details";
	}
}

function changeColor(id, color) {
	document.getElementById(id).bgColor = color;
}
		
