var first = true;
function ShowPopup(container,message)
{
    var html = jQuery('<div class="notify not-sticky" style="display: block;"><div class="notify-body"><p>'+message+'</p></div><div class="notify-bottom"/><a class="close" href="#close">Close</a></div>');
    jQuery(container).append(html);
    html.show();
    html.oneTime("6s", function() {jQuery(this).hide(10000, function() {jQuery(this).remove();});});
    //jQuery(container).oneTime("6s", function() {jQuery(container.firstChild).hide(2000, function() {jQuery(container.firstChild).remove();});});
}