

function CellUp(cell)
{
    cell.style.filter = 'alpha(opacity=100)';
}

function CellDown(cell)
{
    cell.style.filter = 'alpha(opacity=70)';
}

function BugFixEditor1()
{
    div = document.getElementById("editor_fck");
    div.style.filter = 'Alpha()';
}