function confirmDel(txt, url) {
	if(confirm(txt)) {
	location.href=url;
	}
}

function confirmBox(txt, url) {
	if(confirm(txt)) {
	document.forms[0].submit();
	}
}

function showAdminsLogs() {
	var form = document.logForm;
	var type = form.type.options[form.type.selectedIndex].value;
	location.href = '?p=logs&type=' + type;
}

function showAdminsLogs2() {
	var form = document.logForm;
	var type = form.type.options[form.type.selectedIndex].value;
	location.href = '?p=logsathena&type=' + type;
}