To show color default, or color param

I´m trying to do this, I have a dynamic text and in this dynamic text I call a value, in my HTML I have a PARAM color, he change the color of my dynamic text, so far works fine, but I have 4 products, and each product I have a especific value, example: in product 2 I wanna change de color of my value, my problem is I cann´t change this color.

In my HTML I have the PARAM " cp=006699 " it is the color of the values of the 4 products, 1 default color for the 4 values of my 4 products, but I would like to change the color of my 2º product, some special color " cp2=330099 ", and so on.

HTML


arquivo.swf?cp=006699&cp2=330099........

my AS.
[AS]
//alterar cor dos preços dos produtos 2 = cp2
if (cp != undefined) {
new Color (preco2_2_mc.preco2_mc).setRGB (parseInt (cp, 16));
}
else {
new Color (preco2_2_mc.preco2_mc).setRGB (parseInt (cp2, 16));
}
[/AS]

Sorry about my English.