
function nuevoParrafo() {
    document.getElementById( "noticeForm:body" ).innerText = document.getElementById( "noticeForm:body" ).innerText + "<p></p>";
}

function negrita() {
    document.getElementById( "noticeForm:body" ).innerText = document.getElementById( "noticeForm:body" ).innerText + "<b></b>";
}

function cursiva() {
    document.getElementById( "noticeForm:body" ).innerText = document.getElementById( "noticeForm:body" ).innerText + "<i></i>";
}            

