function tx_dngsocial_starthide(id) {
	var content = document.getElementById(id);
	if(content)
	{content.className = "tx_dngsocial_network_bloc_social_off";}
	else
	{alert("Erreur DNGSocial : Bloc inconnu !!");}
}
function tx_dngsocial_startsaw(id) {
	var content = document.getElementById(id);
	if(content)
	{content.className = "tx_dngsocial_network_bloc";}
	else
	{alert("Erreur DNGSocial : Bloc inconnu !!");}
}

function tx_dngsocial_js(id) {
	var content = document.getElementById(id);
	if(content) {
		if(content.className=="tx_dngsocial_network_bloc_social_on")
		{content.className = "tx_dngsocial_network_bloc_social_off";}
		else
		{content.className = "tx_dngsocial_network_bloc_social_on";}
	}
	else
	{alert("Erreur DNG social : Bloc inconnu !!");}
}
