function del_member (did, gid) {
	
	if (confirm("Are you sure you wish to delete this member?") == true) {
		
		window.location = "?act=members&gid=" + gid + "&did=" + did;
		
	}

}

function issue_password (id, gid) {
	
	if (confirm("Are you sure you wish to issue a new password for this member?") == true) {
		
		window.location = "?act=password&gid=" + gid + "&id=" + id;
		
	}

}

function del_ban (id) {

	if (confirm("Are you sure you wish to unban this steam account?") == true) {
	
		window.location = "?act=managebans&sub=view&rid=" + id;
	
	}

}

function del_pm (id) {

	if (confirm("Are you sure you wish to delete this Personal Message?") == true) {
	
		window.location = "?act=pmview&did=" + id;
	
	}

}

function del_banrequest (id) {

	if (confirm("Are you sure you wish to delete all ban requests for this steam account?") == true) {
	
		window.location = "?act=managebans&sub=requested&did=" + id;
	
	}

}


function servers_delete_admingroup (id) {
	
	if (confirm("Are you sure you wish to delete this group?")) {
		
		window.location = "?act=servers&sub=viewgroups&del=admingroup&id=" + id;
		
	}

}

function servers_delete_mani_cfg (id) {
	
	if (confirm("Are you sure you wish to delete this mani cfg?")) {
		
		window.location = "?act=servers&sub=mani-cfg-manage&did=" + id;
		
	}

}
