function confirmation(message,action)
{
   if(confirm(message))
   {
      eval(action);
   }
}




