function show(type, val) {
	val = val.options[val.options.selectedIndex].value;
	if(type=='cat' || type=='obj' || type=='year') {
		if(val==-1) {
			popup('browse?url', 'browse', 'width=300, height=500');
		} else if(val!=0) {
			top.location.href='?'+type+'='+val;
		}
	}
}

function popup(u, n, p) {
	var win = window.open(u, n, p);
	win.focus();
}

function browse() {
	popup('browse', 'browse', 'width=300, height=500');
}

function textmodule() {
	popup('textmodule', 'textmodule', 'width=300, height=500');
}
	
function confirmAction() {
	var ok = confirm("Soll dieses Bild wirklich gelöscht werden?");
	if(ok) {
		return true;
	} else {
		return false;
	}
	return false;
}
