//Autor skryptu Damian Flis (+48 665296707)
zdj_posx=0;zdj_posy=0;
function zdj_dzb(img_src,widoczne,div_id,img_id){
if(widoczne==1){
document.getElementById(div_id).style.visibility='visible';
document.getElementById(img_id).style.visibility='visible';
document.getElementById(img_id).src=img_src;
document.getElementById(div_id).style.left=window.screen.availWidth/2-342+'px';
document.getElementById(img_id).style.left=window.screen.availWidth/2-342+'px';
document.getElementById(div_id).style.top=window.screen.availHeight/2-360+document.documentElement.scrollTop+'px';
document.getElementById(img_id).style.top=window.screen.availHeight/2-320+document.documentElement.scrollTop+'px';
}
else{
document.getElementById(div_id).style.visibility='hidden';
document.getElementById(img_id).style.visibility='hidden';
}
}