function archive_goToCategory(hash) {
	var form = document.forms["archiveBrowser"];
	form["archive-category"].value = hash;
	return true;
}

function archive_viewItem(hash, parent) {
	document.location.href = "index.php?action=item-view&item-action=view&item-hash="+hash+"&archiveItem-parent="+parent;
}

function archive_searchTab(who) {
	var tabForms = document.getElementsByName("archiveSearchForm");
	for(i=0; i<tabForms.length; i++) {
		var tabForm = tabForms.item(i);
//		showProps(tabForm);
		if(tabForm.id == who) {
			tabForm.style.display = "block";
		} else {
			tabForm.style.display = "none";
		}
	}
}