The case was revealed in November 2020, following a complaint to the Internal Affairs Sub-Directorate of Northern Greece of EL.AS. He himself was put on leave from his university duties, when the criminal investigation began, with the “corrupt” members of EL.AS. to “dust off” all the surgeries he performed.
In fact, from the specific investigation it emerged that between 2018 and 2020 he had also collected “bags” from other patients – more than 15 – and for this reason a second case file was filed against him for bribery, by follow-up and by profession, which is pending in the criminal courts. Recently, patients and their relatives were tried and acquitted, because they had given “bags” (to bribe an employee).
Before the Magistrates’ Court who found him guilty, the convicted doctor denied the charge, claiming that he was the victim of fraud. He also stated that the disputed surgery was to be performed in a private hospital and that half of the money was intended for him as a fee and the rest for his scientific team.
Shock in Rhodes: Dead 35-year-old pregnant woman – Battle to save the baby
Cyprus: Planning for an extended meeting of the parties involved
Acropolis: Dead 28-year-old who fell from the 5th floor of an apartment building
Menidi: Two injured in shootings
#Thessaloniki #doctor #sentenced #bag #euros
What are the benefits of using a function like `asyncLoadScript` in handling multiple advertising scripts in the provided JavaScript code snippet?
It looks like you've shared a partial JavaScript code snippet that is intended to handle various ad placements and integrations on a webpage. Below, I'll summarize the main components of the script and their intended functionality:
1. **AdSense Handling**:
- The script checks for elements with the class `.adsbygoogle` to determine if there are any AdSense slots on the page.
- If the slots exist, a function to load the required scripts associated with AdSense is likely invoked (though the actual asyncLoadScript call appears to be incomplete).
2. **OneSignal Initialization**:
- It sets up the OneSignal service, which is typically used for push notifications. An application ID is provided to initialize the service.
3. **Disqus Configuration**:
- It sets up Disqus for comments on the page. The `disqus_config` function specifies the page's URL and unique identifier, which identifies the thread.
4. **CleverCore (Commented Out)**:
- The script contains commented-out code for loading a script named "CleverCore," which implies it may be meant for tracking or advertising purposes.
5. **Taboola/Project Agora**:
- There are references to loading scripts related to Taboola or Project Agora, commonly used for content recommendations and native advertising.
6. **Additional Ads Loading Conditions**:
- There are checks for elements for specific advertising services (like Glomex, Phaistos Adman, and Vidoomy). Corresponding asynchronous loading functions are triggered based on the presence of these elements.
### Suggestions for Improvements:
- **Complete the Function Calls**: Make sure to fill in the placeholders for the script URLs within the `asyncLoadScript` and other similar calls. This is crucial for the ads to function correctly.
- **Error Handling**: Consider adding error handling logic to manage scenarios where script loading fails.
- **Performance Optimizations**: Debounce or throttle the script loading calls to avoid multiple requests for the same script if the user rapidly navigates or interacts with the page.
- **Comment Clarity**: Ensure that comments are clear for future reference, particularly where the logic is complex or where service integrations are employed.
If you have any specific questions or need assistance with a particular section of the code, feel free to ask!