﻿// Fichier JScript
// Ce programme est la propriété de NovaBoost
// Toute reproduction même partielle est formellement interdite

// This is a NovaBoost program
// Any copy, even partial, is strictly forbidden

function ColorSelector(item) {

        var selecteditem=item;          
        var colorbox = document.getElementById("DivColors");
        colorbox.style.left = "25%";
        colorbox.style.top = "50%";
    
        colorbox.style.visibility = "visible";
        }

    function CloseColors() {
        var colorbox = document.getElementById("DivColors");
        colorbox.style.visibility = "hidden";
    }

    function PicSelect(item) {
    
        var selecteditem=item;
        document.getElementById("DivImage").style.backgroundColor="#" + selecteditem.id.substr(0,6);
            
        var colorbox = document.getElementById("DivColors");
        colorbox.style.visibility = "hidden";
    }
    
    function DisplayName(item) {
    
        var overitem = item;
        var TxtArea;
        TxtArea = document.getElementById("ColorName");
        TxtArea.value = "#" + overitem.id.substr(0,6) + "   "  + overitem.title;
    
        overitem.style.cursor = "default";    
    }
    
    