window.onload = function(){
let buttons = document.querySelectorAll('.show-image');
buttons.forEach(function(btn){
btn.addEventListener('click', function(){
document.getElementById('open_img').innerHTML = '';
let img = document.createElement('img');
img.style.position = 'absolute';
img.style.left = btn.dataset.left
img.style.top = btn.dataset.top
img.src = btn.dataset.link;
document.getElementById('open_img').append(img);
});
});
};