
function showLogo(logo) {
    var img = document.getElementById('logo');
    img.setAttribute('src', logo);
    return true;
}

function showPicture(picture, target) {
    window.open(picture, target,
        'height=720,width=980,status=no,toolbar=no,menubar=no,location=no');
}

