// Copyright (c) 2008 Thomas Boitel (http://www.wickedpro.com)

function please_wait(submit_button_id, wait_msg_id)
{
  document.getElementById(submit_button_id).style.display='none';
  document.getElementById(wait_msg_id).style.display='block';
}

function del_confirm(del_name)
{
  a= confirm ('Supprimer '+del_name+' ?');
  if (a)
    return true;
  else
    return false;
}
