function SelectColor(Objet_ID)
{
	window.open("palette.html?" + Objet_ID, "", "scrollbars=yes,menubar=no,toolbar=no,resizable=no,width=150,height=170");
}

function SetColor(Objet_ID, color)
{
	document.getElementById(Objet_ID).style.backgroundColor = color;
	document.getElementById(Objet_ID).value = color;
	document.getElementById(Objet_ID).style.color = color;
}

function ValiderSuppression() {
if (confirm('Etes-vous sur de vouloir supprimer cet item ?')) 
	{
    return true;
	} 
    else 
    {
	return false;
    };

}

function CDE_Voir(CDE_ID)
{
    window.open("cde_voir.aspx?cde_id=" + CDE_ID, "", "scrollbars=yes,menubar=no,toolbar=no,resizable=no,width=600,height=650");
}
