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 man who fell from the 5th floor of an apartment building
Menidi: Two injured in shootings
#Thessaloniki #doctor #sentenced #bag #euros
What are the best practices for integrating third-party scripts like AdSense and Disqus into a webpage?
It looks like you've provided a snippet of JavaScript code related to loading different scripts for advertisements and other integrations (like OneSignal and Disqus) on a webpage. However, the code appears to be incomplete, with placeholders and commented-out sections indicating where certain scripts are supposed to be loaded.
Here’s a brief overview of what each part is intended to do based on the provided context:
1. **AdSense for Mobile**: The code checks for mobile advertisement elements with the class `.adsense-for-mobile` and removes any existing `.adsbygoogle` elements from the DOM.
2. **AdSense Initialization**: It tries to count and potentially initialize AdSense slots with the class `.adsbygoogle`, but the critical piece for loading the scripts has been commented out.
3. **Phaistos Adman**: This section appears to set up an ad unit with a specific ID (`338`) but is mainly left incomplete.
4. **OneSignal**: The OneSignal configuration initializes a push notification service with a specific app ID.
5. **Disqus**: This part is meant to configure Disqus comments on the page; the relevant script source and configuration data haven't been provided completely.
6. **CleverCore**: The commented-out section indicates an integration with CleverCore, which is also not fully included.
7. **Taboola/Project Agora**: Also references an integration that isn't fully shown or implemented in the provided snippet.
8. **Glomex**: It checks for the presence of `glomex-integration` and sets a timeout to load a related module.
9. **Dalecta and Vidoomy**: These sections show delayed loading for scripts related to Dalecta and Vidoomy, but again, the exact implementations are incomplete.
### Suggestions for Completing the Snippet:
1. **Commented Scripts**: Uncomment and complete the `asyncLoadScript('...')` calls with the actual script URLs for Google AdSense, Phaistos Adman, etc.
2. **Ensure Proper URL Usage**: Make sure that the script sources (`src`) are populated correctly.
3. **Error Handling**: Consider adding error handling for script loading failures.
4. **Optimization**: You might want to use a loader mechanism to prevent blocking the DOM rendering for improved performance.
5. **Consistency**: Ensure consistent naming and functionality across different integrated scripts.
Here’s a template to fill in some of the missing parts:
```javascript
function asyncLoadScript(src) {
const script = document.createElement('script');
script.src = src;
script.async = true;
document.head.appendChild(script);
}
// Example usage to load AdSense
if (document.querySelectorAll('.adsbygoogle').length) {
asyncLoadScript('https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js');
}
// Example Phaistos Adman integration
asyncLoadScript('https://path.to/phaistos/adman.js');
// More script loads here...
```
Feel free to provide more context or details if you have specific parts of the script you'd like assistance with!