var dropdowndivs = [];

function ITN_DropDown(id)
{
    //alert(id);
    if (document.getElementById(id).style.display=='')
    {
        ITN_hideAllDropDowns();
    }
    else
    {
        ITN_hideAllDropDowns();
        document.getElementById(id).style.display='';
    }
    
}


function ITN_DropDownSelect(id, replaceele, ele)
{
    document.getElementById(replaceele).innerHTML=ele.innerHTML;
    if (ele.style.fontFamily)
    {
        if (ele.style.fontFamily!='')
        {
            document.getElementById(replaceele).style.fontFamily=ele.style.fontFamily;
        }
    }
    ITN_hideAllDropDowns();
}



    function hideAllDropDownsExceptId(id)
    {
        for (var i=0; i < dropdowndivs.length; i++)
        {
            if (id!=dropdowndivs[i])
            {
                document.getElementById(dropdowndivs[i]).style.display='none';
            }
        }
    }

    function ITN_hideAllDropDowns()
    {
        for (var i=0; i < dropdowndivs.length; i++)
        {
            document.getElementById(dropdowndivs[i]).style.display='none';
        }
        
    }

    function ITN_DropDownItemOver(elem) {
        elem.style.backgroundColor='#316AC5';
        elem.style.color='White';
        elem.style.border='dotted 1px #316AC5';
    }

    function ITN_DropDownItemOut(elem) {
        elem.style.backgroundColor='white';
        elem.style.color='Black';
        elem.style.border='none';
    }


    function ITN_ShowColorPicker(colorPicker)
    {
        var tmp=document.getElementById(colorPicker + '_AvailableColors');
        if (tmp.style.display=='none')
        {
            ITN_hideAllDropDowns();
            tmp.style.display='';
        }
        else
        {
            ITN_hideAllDropDowns();
            tmp.style.display='none';
        }
    }
