/**
//author: Larry Luan
//date: 05/17/2010
//email: luan4637@yahoo.com
//phone: 098 466 4441
//description: change popup picker color that get from database, admin can add or modify this color
*/

function showListColors(obj, attribute)
{	
	$('attribute_color').value = attribute;

	$('list_colors').toggle();
	
	$('list_colors').setStyle({ left: (obj.offsetLeft + 15 - $('list_colors').getWidth()) + 'px', top: (obj.offsetTop + 18) + 'px' });
}

function closeListColors(obj)
{	
	$('list_colors').hide();
}

function imageListColors(obj, colorName, colorCode)
{
	var attributeColor = $('attribute_color').value;
	
	$('attrib-' + attributeColor + '-0').value = colorCode;
	//$('attrib-' + (attributeColor - 3) + '-0').value = colorName;
	
	$('list_colors').hide();
}
