function toggle(obj) {
	var el = document.getElementById(obj);
	el.style.display = (el.style.display != 'none' ? 'none' : '' );
}

function showpic(path, width, height, scroll) {
	window.open("/libs/misc/showpic.php?path=" + path, "", "left=" + ((screen.width - width) / 2) + ",top=" + ((screen.height - height) / 2) + ",width=" + width + ",height=" + height + ",scrollbars=" + scroll);
	return false;
}