function confirm_drop_table() {
	Check = confirm("Drop this table ?");
	if (Check == true) {
		return true;
	} else {
		return false;
	}
}


function confirm_empty_table() {
	Check = confirm("Empty this table ?");
	if (Check == true) {
		return true;
	} else {
		return false;
	}
}


function confirm_drop_index() {
	Check = confirm("Drop this index ?");
	if (Check == true) {
		return true;
	} else {
		return false;
	}
}


function confirm_vacuum_db() {
	Check = confirm("Vacuum Database ?");
	if (Check == true) {
		return true;
	} else {
		return false;
	}
}


function confirm_drop_db() {
	Check = confirm("Drop the database ?");
	if (Check == true) {
		return true;
	} else {
		return false;
	}
}
