function colorPickerSetColor(color, id, editor)
{
	
	if (!color.match(/#[0-9a-fA-F]{6}$/))
		color = '#ffffff';
	
	document.getElementById(id).value = color;
	document.getElementById(id+'_preview').style.backgroundColor = color;
	
	if (editor != '')
		document.getElementById(editor+'_editor_bgcolor').value = color;
} // colorPickerSetColor