function createNotify(message, notify_object){

console.log(message);
console.log(notify_object.html());
if (notify_object.html() == ''){
  notify_object.html("<div class='uk-alert uk-alert-danger'>"+message+"</div>");
}

}

function removeNotify(notify_object){

notify_object.html('');

}