evol in "admin_config_colors.asp" add this code after a line like this " </tr>" & vbNewLine & _
" <tr valign=""middle"">" & vbNewLine & _
" <td bgColor=""" & strPopUpTableColor & """ align=""right""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><b>New cell color:</b> </font></td>" & vbNewLine & _
" <td bgColor=""" & strPopUpTableColor & """><input type=""text"" name=""strNewCellColor"" size=""10"" maxLength=""20"" value=""" & chkExist(strNewCellColor) & """>" & vbNewLine & _
" <a href=""JavaScript:openWindow3('pop_config_help.asp?mode=colors#colors')"">" & getCurrentIcon(strIconSmileQuestion,"","") & "</a></td>" & vbNewLine & _
" </tr>" & vbNewLine & _
Now in "config.asp" find this code:
Dim strShowPrinterFriendly, strShowTimer, strTimerPhrase, strShowFormatButtons, strShowSmiliesTable, strShowQuickReply
Dim SubCount, MySubCount
And add this right after
Dim strNewCellColor
And close to the bottom of the page add this
strNewCellColor = Application(strCookieURL & "STRNEWCELLCOLOR")
And when you want to use it
Response.Write "<td bgcolor=""" & strNewCellColor & """>" & vbNewLine & _