function editBrik(b_id, b_content) { var url = 'http://www.mewiedos.ch/api/content/editbrik.html'; new Ajax.Request(url, { method: 'post', parameters: { id: b_id, content: b_content }, onSuccess: function(transport) { return true; } }); return true; } function beginEdit(id) { $('txt_'+id).value = $('cnt_'+id).innerHTML.replace(/
/,'\r\n'); $('show_'+id).style.display='none'; $('edit_'+id).style.display=''; } function endEdit(id){ $('cnt_'+id).innerHTML = $('txt_'+id).value; $('show_'+id).style.display=''; $('edit_'+id).style.display='none'; } function deletePage(p_id) { //../ var url = '/mamani.ch/www/api/navigation/deletepage.html'; new Ajax.Request(url, { method: 'post', parameters: { id: p_id }, onSuccess: function(transport) { location.href="/mamani.ch/www/"; return true; } }); return true; }