function askConfirmation(msg){
   if(confirm(msg)){
      return true;
   }
   return false;
};

