function myPopup(ind) {
    window.open( ind, "Foto", "status = 1, height = 500, width = 500, resizable = 0" );
}

function replaceCharacter(name) {
    //originalText = document.textConvForm.textConvArea.value;
    stringa = document.getElementById(name).value;
    //alert(stringa);
    //stringa = document.news.corpoNews.value;
    var re = new RegExp ('\\u20AC', 'gi') ;
    stringa = stringa.replace(re, "&euro;");
    //getElementsByName(name).value = stringa;
    //document.news.corpoNews.value = stringa;
    document.getElementById(name).value=stringa;
    
}

function insertData(name) {
    alert('init');
    document.getElementById(name).value=getXHTML(trim(document.getElementById(rteFormName).value));
    alert(getXHTML(trim(document.getElementById(rteFormName).value)));
} 