var IE = document.all?true:false
function show() {
if(IE) {
var poz_y = (document.documentElement.scrollTop + 100) + 'px';
}
else {
var poz_y = (document.body.scrollTop + 100) +'px';
}
var poz_x = ((document.body.clientWidth/2)-187) +'px';
document.getElementById("atom_kartka").style.left = poz_x;
document.getElementById("atom_kartka").style.top = poz_y;
document.getElementById("atom_kartka").style.display = "block";
}

function hide() {
document.getElementById("atom_kartka").style.display = "none";
}
