var textArea = document.getElementById('fbrp__45');

textArea.onfocus=function()
{
    document.getElementById("textarea2").className = "textarea2_active"; 
}

textArea.onblur=function()
{
    document.getElementById("textarea2").className = "textarea2"; 
}

