var colorTarget;
var targetPreview;
function selectionCouleur(target, targetPre){
	colorTarget = target;
	targetPreview = targetPre;
	targetPreview
	var selecteur = window.open('inc_js/colorPicker/colorPicker.html','colorPicker','width=350,height=320');
	selecteur.focus();
}

function assigneColor(color){
	var target = document.getElementById(colorTarget);
	if(target){
		target.value='#'+color;
		document.getElementById(targetPreview).style.backgroundColor='#'+color;
	}
}
