﻿if (typeof (__dnn_m_aNamespaces) == 'undefined') var __dnn_m_aNamespaces = new Array();
function dnn_colorPicker() {
    this.pns = 'dnn';
    this.ns = 'colorPicker';
    this.dependencies = 'dnn,dnn.dom'.split(',');
    this.isLoaded = false;
    this.paletta = null;
    this.colorBtn = null;
}
dnn_colorPicker.prototype.init = function() {
    if (this.paletta == null) {
        var div = document.createElement("div");
        div.setAttribute("id", "color_Picker_paletta");
        div.style.visibility = "hidden";
        div.style.position = "absolute";
        div.style.left = '0px';
        div.style.top = '0px';
        div.style.zIndex = 9999;
        div.innerHTML = getColorPaletta();
        this.paletta = div;
        dnn.dom.addSafeHandler(this.paletta, "onclick", this, "hidePaletta");
        dnn.dom.addSafeHandler(this.paletta, "onmouseover", this, "PalettaMouseMove");
    }
}
dnn_colorPicker.prototype.SelectForeColor = function(o, callBackFunc) {
    if (o.style.backgroundColor) {
        this.paletta.lastChild.style.backgroundColor = o.style.backgroundColor;
    }

    if (this.paletta.parentElement == null)
        document.body.appendChild(this.paletta);
    var oDimsPal = new dnn.dom.positioning.dims(this.paletta);
    var palettaHeight = oDimsPal.h;
    var palettaWidth = oDimsPal.w;
    /*
    if (bPopUp) {
        var Pickleft = (screen.width - palettaWidth) / 2;
        var Picktop = (screen.height - palettaHeight) / 2;
        var params = "status=no,toolbar=no,menubar=no,location=no,width=" + palettaWidth + "px,height=" + palettaHeight + "px,top=" + Picktop + "px,left=" + Pickleft + "px";
        var pickerWin = window.open("", "colorPickerWin", params);
        if (pickerWin) { pickerWin.focus(); }
        else { alert("Please turn off your PopUp blocking software"); return; }
        pickerWin.document.body.innerHTML = '';
        pickerWin.document.open();
        pickerWin.document.write(PopUp_ColorPicker);
        pickerWin.document.write(this.paletta.innerHTML);
        pickerWin.document.write("</div></body></html>");
        pickerWin.document.close();
        launchParameters = new Object();
        launchParameters['callBack'] = callBackFunc;
        pickerWin.launchParameters = launchParameters;
    }
    else {
        this.callBackFunction = callBackFunc;
        if (this.colorBtn != null && this.colorBtn != o)
            this.paletta.style["visibility"] = 'hidden';
        this.colorBtn = o;
        var oDimsPic = new dnn.dom.positioning.dims(o);
        this.paletta.style.left = (oDimsPic.l - palettaWidth < 0 ? oDimsPic.l + oDimsPic.w : oDimsPic.l - palettaWidth) + "px";
        this.paletta.style.top = (oDimsPic.t - palettaHeight < 0 ? oDimsPic.t + oDimsPic.h : oDimsPic.t - palettaHeight) + "px";
        this.paletta.style["visibility"] = this.paletta.style["visibility"] == "hidden" ? "visible" : "hidden";
        var bShow = this.paletta.style["visibility"] == 'visible' ? true : false;
        dnn.dom.positioning.placeOnTop(this.paletta, bShow, '')
    }
    */
    this.callBackFunction = callBackFunc;
    if (this.colorBtn != null && this.colorBtn != o)
        this.paletta.style["visibility"] = 'hidden';
    this.colorBtn = o;
    var oDimsPic = new dnn.dom.positioning.dims(o);
    this.paletta.style.left = (oDimsPic.l - palettaWidth < 0 ? oDimsPic.l + oDimsPic.w : oDimsPic.l - palettaWidth) + "px";
    this.paletta.style.top = (oDimsPic.t - palettaHeight < 0 ? oDimsPic.t + oDimsPic.h : oDimsPic.t - palettaHeight) + "px";
    this.paletta.style["visibility"] = this.paletta.style["visibility"] == "hidden" ? "visible" : "hidden";
    var bShow = this.paletta.style["visibility"] == 'visible' ? true : false;
    dnn.dom.positioning.placeOnTop(this.paletta, bShow, '')
    
}

dnn_colorPicker.prototype.SetForeColor = function(color) {
    color = FTB_RgbStringToHex(color);
    this.ftb.forecolor = color;
    this.ftb.ExecuteCommand('forecolor', '', color);
}



dnn_colorPicker.prototype.PalettaMouseMove = function(e, obj) {
    var o = e.target || e.srcElement;
    var selColor = o.style.backgroundColor;
    if (selColor != null && selColor != "" && o.tagName == "TD") {
        dnn.colorPicker.paletta.lastChild.style.backgroundColor = selColor;
    }
}
dnn_colorPicker.prototype.hidePaletta = function(e, obj) {
    var o = e.target || e.srcElement;
    var selColor = o.style.backgroundColor;
    if (selColor != null && selColor != "") {
        this.paletta.style.visibility = "hidden";
        dnn.dom.positioning.placeOnTop(this.paletta, false, '')
        if (dnn.colorPicker.callBackFunction) {
            return dnn.colorPicker.callBackFunction(selColor)
        }
    }
}

dnn_colorPicker.prototype.dependenciesLoaded = function() {
    return (typeof (dnn) != 'undefined' && typeof (dnn.dom) != 'undefined');
}
dnn_colorPicker.prototype.loadNamespace = function() {
    if (this.isLoaded == false) {
        if (this.dependenciesLoaded()) {
            dnn.colorPicker = this;
            this.isLoaded = true;
            dnn.colorPicker.init();
        }
    }
}

__dnn_m_aNamespaces[__dnn_m_aNamespaces.length] = new dnn_colorPicker();
for (var i = __dnn_m_aNamespaces.length - 1; i >= 0; i--)
    __dnn_m_aNamespaces[i].loadNamespace();

function getColorPaletta() {
    var colorPaletta = new String("\
	<table height='200px' Class='ColorPaletta' cellpadding='0' cellspacing='0' border='0'>\r\n\
		<style>\r\n\
		.ColorPaletta{\r\n\
			background-color:#CFDDF8;\r\n\
			cursor:pointer;\r\n\
			font-size:6px;\r\n\
		}\r\n\
		.ColorPaletta TD{\r\n\
			border-right:solid 1px #CFDDF8;\r\n\
			border-bottom:solid 1px #CFDDF8;\r\n\
			border-top:solid 0px #CFDDF8;\r\n\
			border-left:solid 0px #CFDDF8;\r\n\
			width:10px;\r\n\
		}\r\n\
		</style>\r\n\
		<tr><td style='background-color:#660000;'>&nbsp;</td><td style='background-color:#700000'>&nbsp;</td><td style='background-color:#7A0000'>&nbsp;</td><td style='background-color:#840000'>&nbsp;</td><td style='background-color:#8E0000'>&nbsp;</td><td style='background-color:#990000'>&nbsp;</td><td style='background-color:#A30000'>&nbsp;</td><td style='background-color:#AD0000'>&nbsp;</td><td style='background-color:#B70000'>&nbsp;</td><td style='background-color:#C10000'>&nbsp;</td><td style='background-color:#CC0000'>&nbsp;</td><td style='background-color:#D60000'>&nbsp;</td><td style='background-color:#E00000'>&nbsp;</td><td style='background-color:#EA0000'>&nbsp;</td><td style='background-color:#F40000'>&nbsp;</td><td style='background-color:#FF0000'>&nbsp;</td><td style='background-color:#FF0A0A'>&nbsp;</td><td style='background-color:#FF1414'>&nbsp;</td><td style='background-color:#FF1E1E'>&nbsp;</td><td style='background-color:#FF2828'>&nbsp;</td><td style='background-color:#FF3333'>&nbsp;</td><td style='background-color:#FF3D3D'>&nbsp;</td><td style='background-color:#FF4747'>&nbsp;</td><td style='background-color:#FF5151'>&nbsp;</td><td style='background-color:#FF5B5B'>&nbsp;</td><td style='background-color:#FF6666'>&nbsp;</td><td style='background-color:#FF7070'>&nbsp;</td><td style='background-color:#FF7A7A'>&nbsp;</td><td style='background-color:#FF8484'>&nbsp;</td><td style='background-color:#FF8E8E'>&nbsp;</td></tr>\r\n\
		<tr><td style='background-color:#663D00;'>&nbsp;</td><td style='background-color:#704300'>&nbsp;</td><td style='background-color:#7A4900'>&nbsp;</td><td style='background-color:#844F00'>&nbsp;</td><td style='background-color:#8E5500'>&nbsp;</td><td style='background-color:#995B00'>&nbsp;</td><td style='background-color:#A36100'>&nbsp;</td><td style='background-color:#AD6800'>&nbsp;</td><td style='background-color:#B76E00'>&nbsp;</td><td style='background-color:#C17400'>&nbsp;</td><td style='background-color:#CC7A00'>&nbsp;</td><td style='background-color:#D68000'>&nbsp;</td><td style='background-color:#E08600'>&nbsp;</td><td style='background-color:#EA8C00'>&nbsp;</td><td style='background-color:#F49200'>&nbsp;</td><td style='background-color:#FF9900'>&nbsp;</td><td style='background-color:#FF9D0A'>&nbsp;</td><td style='background-color:#FFA114'>&nbsp;</td><td style='background-color:#FFA51E'>&nbsp;</td><td style='background-color:#FFA928'>&nbsp;</td><td style='background-color:#FFAD33'>&nbsp;</td><td style='background-color:#FFB13D'>&nbsp;</td><td style='background-color:#FFB547'>&nbsp;</td><td style='background-color:#FFB951'>&nbsp;</td><td style='background-color:#FFBD5B'>&nbsp;</td><td style='background-color:#FFC166'>&nbsp;</td><td style='background-color:#FFC570'>&nbsp;</td><td style='background-color:#FFC97A'>&nbsp;</td><td style='background-color:#FFCE84'>&nbsp;</td><td style='background-color:#FFD28E'>&nbsp;</td></tr>\r\n\
		<tr><td style='background-color:#516600;'>&nbsp;</td><td style='background-color:#597000'>&nbsp;</td><td style='background-color:#617A00'>&nbsp;</td><td style='background-color:#6A8400'>&nbsp;</td><td style='background-color:#728E00'>&nbsp;</td><td style='background-color:#7A9900'>&nbsp;</td><td style='background-color:#82A300'>&nbsp;</td><td style='background-color:#8AAD00'>&nbsp;</td><td style='background-color:#92B700'>&nbsp;</td><td style='background-color:#9BC100'>&nbsp;</td><td style='background-color:#A3CC00'>&nbsp;</td><td style='background-color:#ABD600'>&nbsp;</td><td style='background-color:#B3E000'>&nbsp;</td><td style='background-color:#BBEA00'>&nbsp;</td><td style='background-color:#C3F400'>&nbsp;</td><td style='background-color:#CCFF00'>&nbsp;</td><td style='background-color:#CEFF0A'>&nbsp;</td><td style='background-color:#D0FF14'>&nbsp;</td><td style='background-color:#D2FF1E'>&nbsp;</td><td style='background-color:#D4FF28'>&nbsp;</td><td style='background-color:#D6FF33'>&nbsp;</td><td style='background-color:#D8FF3D'>&nbsp;</td><td style='background-color:#DAFF47'>&nbsp;</td><td style='background-color:#DCFF51'>&nbsp;</td><td style='background-color:#DEFF5B'>&nbsp;</td><td style='background-color:#E0FF66'>&nbsp;</td><td style='background-color:#E2FF70'>&nbsp;</td><td style='background-color:#E4FF7A'>&nbsp;</td><td style='background-color:#E6FF84'>&nbsp;</td><td style='background-color:#E8FF8E'>&nbsp;</td></tr>\r\n\
		<tr><td style='background-color:#146600;'>&nbsp;</td><td style='background-color:#167000'>&nbsp;</td><td style='background-color:#187A00'>&nbsp;</td><td style='background-color:#1A8400'>&nbsp;</td><td style='background-color:#1C8E00'>&nbsp;</td><td style='background-color:#1E9900'>&nbsp;</td><td style='background-color:#20A300'>&nbsp;</td><td style='background-color:#22AD00'>&nbsp;</td><td style='background-color:#24B700'>&nbsp;</td><td style='background-color:#26C100'>&nbsp;</td><td style='background-color:#28CC00'>&nbsp;</td><td style='background-color:#2AD600'>&nbsp;</td><td style='background-color:#2CE000'>&nbsp;</td><td style='background-color:#2EEA00'>&nbsp;</td><td style='background-color:#30F400'>&nbsp;</td><td style='background-color:#33FF00'>&nbsp;</td><td style='background-color:#3BFF0A'>&nbsp;</td><td style='background-color:#43FF14'>&nbsp;</td><td style='background-color:#4BFF1E'>&nbsp;</td><td style='background-color:#53FF28'>&nbsp;</td><td style='background-color:#5BFF33'>&nbsp;</td><td style='background-color:#63FF3D'>&nbsp;</td><td style='background-color:#6CFF47'>&nbsp;</td><td style='background-color:#74FF51'>&nbsp;</td><td style='background-color:#7CFF5B'>&nbsp;</td><td style='background-color:#84FF66'>&nbsp;</td><td style='background-color:#8CFF70'>&nbsp;</td><td style='background-color:#94FF7A'>&nbsp;</td><td style='background-color:#9DFF84'>&nbsp;</td><td style='background-color:#A5FF8E'>&nbsp;</td></tr>\r\n\
		<tr><td style='background-color:#006628;'>&nbsp;</td><td style='background-color:#00702C'>&nbsp;</td><td style='background-color:#007A30'>&nbsp;</td><td style='background-color:#008435'>&nbsp;</td><td style='background-color:#008E39'>&nbsp;</td><td style='background-color:#00993D'>&nbsp;</td><td style='background-color:#00A341'>&nbsp;</td><td style='background-color:#00AD45'>&nbsp;</td><td style='background-color:#00B749'>&nbsp;</td><td style='background-color:#00C14D'>&nbsp;</td><td style='background-color:#00CC51'>&nbsp;</td><td style='background-color:#00D655'>&nbsp;</td><td style='background-color:#00E059'>&nbsp;</td><td style='background-color:#00EA5D'>&nbsp;</td><td style='background-color:#00F461'>&nbsp;</td><td style='background-color:#00FF66'>&nbsp;</td><td style='background-color:#0AFF6C'>&nbsp;</td><td style='background-color:#14FF72'>&nbsp;</td><td style='background-color:#1EFF78'>&nbsp;</td><td style='background-color:#28FF7E'>&nbsp;</td><td style='background-color:#33FF84'>&nbsp;</td><td style='background-color:#3DFF8A'>&nbsp;</td><td style='background-color:#47FF90'>&nbsp;</td><td style='background-color:#51FF96'>&nbsp;</td><td style='background-color:#5BFF9B'>&nbsp;</td><td style='background-color:#66FFA3'>&nbsp;</td><td style='background-color:#70FFA9'>&nbsp;</td><td style='background-color:#7AFFAF'>&nbsp;</td><td style='background-color:#84FFB5'>&nbsp;</td><td style='background-color:#8EFFBB'>&nbsp;</td></tr>\r\n\
		<tr><td style='background-color:#006666;'>&nbsp;</td><td style='background-color:#007070'>&nbsp;</td><td style='background-color:#007A7A'>&nbsp;</td><td style='background-color:#008484'>&nbsp;</td><td style='background-color:#008E8E'>&nbsp;</td><td style='background-color:#009999'>&nbsp;</td><td style='background-color:#00A3A3'>&nbsp;</td><td style='background-color:#00ADAD'>&nbsp;</td><td style='background-color:#00B7B7'>&nbsp;</td><td style='background-color:#00C1C1'>&nbsp;</td><td style='background-color:#00CCCC'>&nbsp;</td><td style='background-color:#00D6D6'>&nbsp;</td><td style='background-color:#00E0E0'>&nbsp;</td><td style='background-color:#00EAEA'>&nbsp;</td><td style='background-color:#00F4F4'>&nbsp;</td><td style='background-color:#00FFFF'>&nbsp;</td><td style='background-color:#0AFFFF'>&nbsp;</td><td style='background-color:#14FFFF'>&nbsp;</td><td style='background-color:#1EFFFF'>&nbsp;</td><td style='background-color:#28FFFF'>&nbsp;</td><td style='background-color:#33FFFF'>&nbsp;</td><td style='background-color:#3DFFFF'>&nbsp;</td><td style='background-color:#47FFFF'>&nbsp;</td><td style='background-color:#51FFFF'>&nbsp;</td><td style='background-color:#5BFFFF'>&nbsp;</td><td style='background-color:#66FFFF'>&nbsp;</td><td style='background-color:#70FFFF'>&nbsp;</td><td style='background-color:#7AFFFF'>&nbsp;</td><td style='background-color:#84FFFF'>&nbsp;</td><td style='background-color:#8EFFFF'>&nbsp;</td></tr>\r\n\
		<tr><td style='background-color:#002866;'>&nbsp;</td><td style='background-color:#002C70'>&nbsp;</td><td style='background-color:#00307A'>&nbsp;</td><td style='background-color:#003584'>&nbsp;</td><td style='background-color:#00398E'>&nbsp;</td><td style='background-color:#003D99'>&nbsp;</td><td style='background-color:#0041A3'>&nbsp;</td><td style='background-color:#0045AD'>&nbsp;</td><td style='background-color:#0049B7'>&nbsp;</td><td style='background-color:#004DC1'>&nbsp;</td><td style='background-color:#0051CC'>&nbsp;</td><td style='background-color:#0055D6'>&nbsp;</td><td style='background-color:#0059E0'>&nbsp;</td><td style='background-color:#005DEA'>&nbsp;</td><td style='background-color:#0061F4'>&nbsp;</td><td style='background-color:#0066FF'>&nbsp;</td><td style='background-color:#0A6CFF'>&nbsp;</td><td style='background-color:#1472FF'>&nbsp;</td><td style='background-color:#1E78FF'>&nbsp;</td><td style='background-color:#287EFF'>&nbsp;</td><td style='background-color:#3384FF'>&nbsp;</td><td style='background-color:#3D8AFF'>&nbsp;</td><td style='background-color:#4790FF'>&nbsp;</td><td style='background-color:#5196FF'>&nbsp;</td><td style='background-color:#5B9DFF'>&nbsp;</td><td style='background-color:#66A3FF'>&nbsp;</td><td style='background-color:#70A9FF'>&nbsp;</td><td style='background-color:#7AAFFF'>&nbsp;</td><td style='background-color:#84B5FF'>&nbsp;</td><td style='background-color:#8EBBFF'>&nbsp;</td></tr>\r\n\
		<tr><td style='background-color:#140066;'>&nbsp;</td><td style='background-color:#160070'>&nbsp;</td><td style='background-color:#18007A'>&nbsp;</td><td style='background-color:#1A0084'>&nbsp;</td><td style='background-color:#1C008E'>&nbsp;</td><td style='background-color:#1E0099'>&nbsp;</td><td style='background-color:#2000A3'>&nbsp;</td><td style='background-color:#2200AD'>&nbsp;</td><td style='background-color:#2400B7'>&nbsp;</td><td style='background-color:#2600C1'>&nbsp;</td><td style='background-color:#2800CC'>&nbsp;</td><td style='background-color:#2A00D6'>&nbsp;</td><td style='background-color:#2C00E0'>&nbsp;</td><td style='background-color:#2E00EA'>&nbsp;</td><td style='background-color:#3000F4'>&nbsp;</td><td style='background-color:#3300FF'>&nbsp;</td><td style='background-color:#3B0AFF'>&nbsp;</td><td style='background-color:#4314FF'>&nbsp;</td><td style='background-color:#4B1EFF'>&nbsp;</td><td style='background-color:#5328FF'>&nbsp;</td><td style='background-color:#5B33FF'>&nbsp;</td><td style='background-color:#633DFF'>&nbsp;</td><td style='background-color:#6C47FF'>&nbsp;</td><td style='background-color:#7451FF'>&nbsp;</td><td style='background-color:#7C5BFF'>&nbsp;</td><td style='background-color:#8466FF'>&nbsp;</td><td style='background-color:#8C70FF'>&nbsp;</td><td style='background-color:#947AFF'>&nbsp;</td><td style='background-color:#9D84FF'>&nbsp;</td><td style='background-color:#A58EFF'>&nbsp;</td></tr>\r\n\
		<tr><td style='background-color:#510066;'>&nbsp;</td><td style='background-color:#590070'>&nbsp;</td><td style='background-color:#61007A'>&nbsp;</td><td style='background-color:#6A0084'>&nbsp;</td><td style='background-color:#72008E'>&nbsp;</td><td style='background-color:#7A0099'>&nbsp;</td><td style='background-color:#8200A3'>&nbsp;</td><td style='background-color:#8A00AD'>&nbsp;</td><td style='background-color:#9200B7'>&nbsp;</td><td style='background-color:#9B00C1'>&nbsp;</td><td style='background-color:#A300CC'>&nbsp;</td><td style='background-color:#AB00D6'>&nbsp;</td><td style='background-color:#B300E0'>&nbsp;</td><td style='background-color:#BB00EA'>&nbsp;</td><td style='background-color:#C300F4'>&nbsp;</td><td style='background-color:#CC00FF'>&nbsp;</td><td style='background-color:#CE0AFF'>&nbsp;</td><td style='background-color:#D014FF'>&nbsp;</td><td style='background-color:#D21EFF'>&nbsp;</td><td style='background-color:#D428FF'>&nbsp;</td><td style='background-color:#D633FF'>&nbsp;</td><td style='background-color:#D83DFF'>&nbsp;</td><td style='background-color:#DA47FF'>&nbsp;</td><td style='background-color:#DC51FF'>&nbsp;</td><td style='background-color:#DE5BFF'>&nbsp;</td><td style='background-color:#E066FF'>&nbsp;</td><td style='background-color:#E270FF'>&nbsp;</td><td style='background-color:#E47AFF'>&nbsp;</td><td style='background-color:#E684FF'>&nbsp;</td><td style='background-color:#E88EFF'>&nbsp;</td></tr>\r\n\
		<tr><td style='background-color:#66003D;'>&nbsp;</td><td style='background-color:#700043'>&nbsp;</td><td style='background-color:#7A0049'>&nbsp;</td><td style='background-color:#84004F'>&nbsp;</td><td style='background-color:#8E0055'>&nbsp;</td><td style='background-color:#99005B'>&nbsp;</td><td style='background-color:#A30061'>&nbsp;</td><td style='background-color:#AD0068'>&nbsp;</td><td style='background-color:#B7006E'>&nbsp;</td><td style='background-color:#C10074'>&nbsp;</td><td style='background-color:#CC007A'>&nbsp;</td><td style='background-color:#D60080'>&nbsp;</td><td style='background-color:#E00086'>&nbsp;</td><td style='background-color:#EA008C'>&nbsp;</td><td style='background-color:#F40092'>&nbsp;</td><td style='background-color:#FF0099'>&nbsp;</td><td style='background-color:#FF0A9D'>&nbsp;</td><td style='background-color:#FF14A1'>&nbsp;</td><td style='background-color:#FF1EA5'>&nbsp;</td><td style='background-color:#FF28A9'>&nbsp;</td><td style='background-color:#FF33AD'>&nbsp;</td><td style='background-color:#FF3DB1'>&nbsp;</td><td style='background-color:#FF47B5'>&nbsp;</td><td style='background-color:#FF51B9'>&nbsp;</td><td style='background-color:#FF5BBF'>&nbsp;</td><td style='background-color:#FF66C1'>&nbsp;</td><td style='background-color:#FF70C5'>&nbsp;</td><td style='background-color:#FF7AC9'>&nbsp;</td><td style='background-color:#FF84CE'>&nbsp;</td><td style='background-color:#FF8ED2'>&nbsp;</td></tr>\r\n\
		<tr><td style='background-color:#000000;'>&nbsp;</td><td style='background-color:#080808'>&nbsp;</td><td style='background-color:#101010'>&nbsp;</td><td style='background-color:#181818'>&nbsp;</td><td style='background-color:#202020'>&nbsp;</td><td style='background-color:#282828'>&nbsp;</td><td style='background-color:#303030'>&nbsp;</td><td style='background-color:#383838'>&nbsp;</td><td style='background-color:#404040'>&nbsp;</td><td style='background-color:#484848'>&nbsp;</td><td style='background-color:#505050'>&nbsp;</td><td style='background-color:#585858'>&nbsp;</td><td style='background-color:#606060'>&nbsp;</td><td style='background-color:#686868'>&nbsp;</td><td style='background-color:#707070'>&nbsp;</td><td style='background-color:#787878'>&nbsp;</td><td style='background-color:#808080'>&nbsp;</td><td style='background-color:#888888'>&nbsp;</td><td style='background-color:#909090'>&nbsp;</td><td style='background-color:#989898'>&nbsp;</td><td style='background-color:#A0A0A0'>&nbsp;</td><td style='background-color:#A8A8A8'>&nbsp;</td><td style='background-color:#B0B0B0'>&nbsp;</td><td style='background-color:#B8B8B8'>&nbsp;</td><td style='background-color:#C0C0C0'>&nbsp;</td><td style='background-color:#C8C8C8'>&nbsp;</td><td style='background-color:#D0D0D0'>&nbsp;</td><td style='background-color:#D8D8D8'>&nbsp;</td><td style='background-color:#E0E0E0'>&nbsp;</td><td style='background-color:#E8E8E8'>&nbsp;</td></tr>\r\n\
		<tr><td colspan='30' align='center'><A style='font-size:12px;text-decoration:none;white-space:nowrap' target='_new' href='http://www.imesser.com'></A></td></tr>\r\n\
	</table>");
    return colorPaletta;
}
