//otwórz stronę
function loaddoc(link) {
var link;
window.location.href=link;
}

//otwarcie zdjęcia w nowym oknie
function new_img(link, width, height) {
var link;
var width;
var height;
if (width<100) width = 450;
if (height<100) height= 450;
window.open('window.php?image='+link+'', 'foto' ,'left=20,top=0, width='+width+' , height='+height+', menubar=0, resizable=1, scrollbars=1');
}

