//menu rozwijane
function mshow(id) {
	var e = document.getElementById(id);
	e.style.visibility="visible";
}

function mhide(id) {
	var e = document.getElementById(id);
	e.style.visibility="hidden";
}

//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;
window.open('window.php?bimage='+link+'', 'foto' ,'left=20,top=20, width='+width+' , height='+height+', menubar=0, resizable=1, scrollbars=1');
}
