function del_cookie(name) {
document.cookie = name +
'=; expires=Thu, 01-Jan-70 00:00:01 GMT;';
}

function setLanguageCookie(language){
    del_cookie('language');
        var today = new Date();
        var expire = new Date();
        expire.setTime(today.getTime() + 3600000*24*365);
        document.cookie = "language="+language+";expires="+expire.toGMTString()+";path=/;domain:www.neofoto.nl:8080";
        window.location.reload(true)
}

function displayError(message){
    var dialog = $('<div></div>')
    .html('<p><span class="ui-icon ui-icon-alert" style="float:left; margin:0 7px 20px 0;"></span>'+message+'</p>')
    .dialog({
        autoOpen: true,
        title: foutmelding,
        height: 200,
        width: 350,
        modal: true,
        buttons: {
            'Ok': function() {
                $(this).dialog('close');
            }
        }
    });
}

function displayConfirmation(message){
    var dialog = $('<div></div>')
    .html('<p><span class="ui-icon ui-icon-info" style="float:left; margin:0 7px 20px 0;"></span>'+message+'</p>')
    .dialog({
        autoOpen: true,
        title: bericht,
        height: 200,
        width: 350,
        modal: true,
        buttons: {
            'Ok': function() {
                $(this).dialog('close');
            }
        }
    });
}

$(document).ready(function() {
    $('#nlflag').click(function() {
        setLanguageCookie('nl');
    })

    $('#ukflag').click(function() {
        setLanguageCookie('en');
    })
});
