function colorPicker_callBack(strColor, controlName)
{ 
	document.getElementById(controlName).value = '#'+strColor;
	setTimeout('CallOnColorChange(\''+ controlName + '\')', 200);	// Delay needed for Opera, Firefox
}

function closeColorPickerAdv(controlName)
{
	document.getElementById('colorchooser_'+controlName).style.visibility = 'hidden';
}

function CallOnColorChange(controlName)
{
	document.getElementById(controlName).onchange();
}

