
function confirmaction(id,action) {
    if (confirm("Are you sure you want to "+action+" this item?")) {
        window.location="index.php?m=news&id="+id+"&action="+action;
    }
}

