var textArea = document.getElementById("fbrp__32");
textArea.onfocus=function()
{
	textArea.style.background = "#ffffff";
    textArea.style.border = "1px solid #7c2f06";
}

textArea.onblur=function()
{
    textArea.style.background = "#faf6f4";
    textArea.style.border = "1px solid #ae6c49";
}

