function tx_dcddownloads_starthide(id) {
	var content = document.getElementById(id);
	if(content)
	{content.className = "tx_dcddownloads_off";}
	else
	{alert("Erreur DCD Downloads : Bloc inconnu !! ("+id+")");}
}

function tx_dcddownloads_js(id) {
	var content = document.getElementById(id);
	if(content) {
		if(content.className=="tx_dcddownloads_on")
		{content.className = "tx_dcddownloads_off";}
		else
		{content.className = "tx_dcddownloads_on";}
	}
	else
	{alert("Erreur DCD Downloads : Bloc inconnu !! ("+id+")");}
}