var MAX_SELECTED_COLORS=3;var width=12;var height=1;var selectedColors=new Array();var colorTable=new Array("ff0000","ff7f00","ffff00","00ff00","00ffff","0000ff","ee82ee","8b00ff","964b00","808080","ffffff","000000");function invertColor(h){if(colorTable[h]=="808080"){return"ffffff";}var e=0;var f="";
e=parseInt(colorTable[h],16);e=~e&16777215;f=e.toString(16);var g=f.length;switch(g){case 1:f+="00000";break;case 2:f+="0000";break;case 3:f+="000";break;case 4:f+="00";break;case 5:f+="0";break;}return f;}function drawTable(){drawSelectedColors();var f=document.getElementById("colorSelectorDiv");var h="";
var j=0;for(var i=0;i<height;i++){for(var g=0;g<width;g++){j=g*height+i;h+="<a class='color_item' onclick='colorClick("+j+")' id='color_"+j+"' style='background:#"+colorTable[j]+"'><span class='color_item_inner'>";if(isSelectedColorsContains(j)==-1){h+="&nbsp;";}else{h+="<img src='/images/cross.gif' alt='X'/>";
}h+="</span></a>";}}h+="";f.innerHTML=h;}function isSelectedColorsContains(c){for(var d=0;d<selectedColors.length;d++){if(selectedColors[d]==c){return d;}}return -1;}function colorClick(d){var c=isSelectedColorsContains(d);if(c!=-1){selectedColors.splice(c,1);}else{if(selectedColors.length<MAX_SELECTED_COLORS){selectedColors.push(d);
}else{alert("Cannot select more than "+MAX_SELECTED_COLORS+" colors");}}drawTable();}function drawSelectedColors(){var i="";var h=document.getElementById("selectedColorsDiv");var f="";if(selectedColors.length>0){f="";for(var g=0;g<selectedColors.length;g++){i+=colorTable[selectedColors[g]];if(g<selectedColors.length-1){i+=",";
}f+="<a class='color_item' style='background:#"+colorTable[selectedColors[g]]+"'><span class='color_item_inner'>&nbsp;</span></a>";}}h.innerHTML=f;var j=document.getElementById("searchColors");j.value=i;}function flipColorSelector(){Effect.toggle("colorSelectorDiv","appear",{afterUpdate:function(){fix_height_for_ie6("blockSearchAdvanced");
}});Effect.toggle("color_selector_table","appear",{afterUpdate:function(){fix_height_for_ie6("blockSearchAdvanced");},afterFinish:function(){fix_height_for_ie6("blockSearchAdvanced");},duration:0.5});var d=$$("#color_select .open")[0];var c=$$("#color_select .close")[0];d.toggle();c.toggle();}function findColor(d){for(var c=0;
c<colorTable.length;c++){if(colorTable[c]==d){return c;}}return -1;}function initSelectedColors(g){if(g&&g.length>0){var h=g.split(",");selectedColors=new Array();for(var e=0;e<h.length&&e<MAX_SELECTED_COLORS;e++){var f=findColor(h[e]);if(f>-1){selectedColors.push(f);}}}}