function turnImgCheck(objCheck)
{
	var img=document.getElementById("img_check_" + objCheck.id).src;
	var tableau=img.split("/");
	if(tableau[tableau.length-1] == 'checkbox_on.gif'){
		tableau[tableau.length-1] = 'checkbox.gif';
	}else{
		tableau[tableau.length-1] = 'checkbox_on.gif';
	}
	tableau_final = tableau.join("/");
	document.getElementById("img_check_" + objCheck.id).src = tableau_final;
}
