function confirm_deletion(controlID) {
	if (controlID == "deleteCountry") {
		return confirm('This will delete the current, as well as all its dependent record(s). \n\nWould you like to continue ..\n');
	}
	if (controlID == "deleteLocationType") {
		return confirm('This will delete the current, as well as all its dependent record(s). \n\nWould you like to continue ..\n');
	}
	if (controlID == "deleteLanguage") {
		return confirm('This will delete the current, as well as all its dependent record(s). \n\nWould you like to continue ..\n');
	}
	if (controlID == "deleteLocation") {
		return confirm('This will delete the current, as well as all its dependent record(s). \n\nWould you like to continue ..\n');
	}
	if (controlID == "deleteDepartment") {
		return confirm('This will delete the current, as well as all its dependent record(s). \n\nWould you like to continue ..\n');
	}
	if (controlID == "deleteSubDepartment") {
		return confirm('This will delete the current, as well as all its dependent record(s). \n\nWould you like to continue ..\n');
	}
	if (controlID == "deletePositionTitle") {
		return confirm('This will delete the current, as well as all its dependent record(s). \n\nWould you like to continue ..\n');
	}
	if (controlID == "deleteUser") {
		return confirm('This will delete the current record. \n\nWould you like to continue ..\n');
	}
	if (controlID == "deleteLocationContact") {
		return confirm('Are you sure you want to remove this location from your contact list?\n');
	} 
	if (controlID == "deleteUserContact") {
		return confirm('Are you sure you want to remove this user from your contact list?\n');
	}
}


