/**
 * Notifier
 */

function notify(title, msg, error)
{
  var n_data = null;
  if (error)
  {
    n_data = {
      pnotify_title: title,
      pnotify_text: msg,
      pnotify_type: 'error'
    };
  } else
  {
    n_data = {
      pnotify_title: title,
      pnotify_text: msg
    };
  }

  $.pnotify(n_data);
}
