function openPho (pseudo, IDAnn, Width, Height)
{
window.open('view_pho.php?pseudo='+pseudo+'&ID_fpost='+IDAnn,'','toolbar=no,menubar=no,statusbar=no,scrollbars=yes,width='+Width+',height='+Height+',left='+(screen.width-Width)/2+',top='+(screen.height-Height)/2+'');
}
function reponseMsg(ID_msg)
{
var html_content = '
Citation :
'+$('msgcontent_'+ID_msg).value+'
';
tinyMCE.execInstanceCommand('fpost_message', 'mceInsertContent', false, html_content);
}
function delPost(ID_fpost, fpost_father)
{
if (confirm("Etes vous sur de vouloir supprimer ce message ? Si c'est un thème, tous les messages descendants seront supprimés ! ?"))
{
window.location = "del_post.php?&fpost_father="+fpost_father+"&ID_fpost="+ID_fpost;
}
}
function smileyPut(cod)
{
tinyMCE.execCommand('mceInsertContent',false,cod);
}