function getItm(id) { var itm = null; if (document.getElementById) { itm = document.getElementById(id); } else if (document.all) { itm = document.all[id]; } else if (document.layers) { itm = document.layers[id]; } if (!itm) { return false; } else { return itm; } } function showhide(id) { var itm = ''; itm = getItm(id); if (itm.style) { itm = itm.style; } if (itm.display == "none") { itm.display = ''; } else { itm.display = "none"; } } function del_cat(id, titre) { if (confirm("Voulez-vous vraiment supprimer la catégorie '"+titre+"' ?")) { window.location = 'gal_cat_del.php?cat_id='+id; } else { alert("Bon choix !"); } } function del_news(id, titre) { if (confirm("Voulez-vous vraiment supprimer la news '"+titre+"' ?")) { window.location = 'news_del.php?news_id='+id; } else { alert("Bon choix !"); } }