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 “incorruptible” 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
It looks like you have a snippet of JavaScript that is managing various ad integrations and configurations for a webpage. The code includes asynchronous loading of scripts for services like Google AdSense, OneSignal, and Disqus, among others. However, several parts of this code are incomplete or commented out (“asyncLoadScript(‘”) without a defined script URL, which is necessary for the code to function correctly.
Here’s a brief outline you can consider to clean up the script:
1. **Completing the Async Script Loads**: Make sure to complete every instance of `asyncLoadScript()` with the required script URL. If you need to load a specific script, provide its source.
2. **Use of Comments**: It seems like there are several commented-out sections. It's important to either remove them or ensure they are properly commented so they don’t interfere with functional parts of your code.
3. **Error Handling**: Consider adding error handling to inform you if any of the script loads fail. This can be done through callbacks provided in your `asyncLoadScript` function.
4. **Performance Considerations**: If you have a lot of asynchronous loads, consider their execution order. If one depends on another, ensure that they are initiated in the proper sequence.
Here’s an enhanced version that addresses some of the issues and includes placeholders for the async scripts:
```javascript
document.addEventListener("DOMContentLoaded", function() {
if (/* some condition */) {
// Load mobile AdSense
document.querySelectorAll('.adsense-for-mobile').forEach(function(e) {
e.querySelector('.adsbygoogle').remove();
});
}
const adSenseSlots = document.querySelectorAll('.adsbygoogle');
const adSenseSlotCount = adSenseSlots.length;
if (adSenseSlotCount > 0) {
asyncLoadScript('https://path/to/adsense/script.js'); // Complete this line
}
window.AdmanQueue = window.AdmanQueue || [];
AdmanQueue.push(function() {
Adman.adunit({id: 338, h: '400', w: '600'}); // Complete this part
});
// OneSignal
window.OneSignalDeferred = window.OneSignalDeferred || [];
OneSignalDeferred.push(function(OneSignal) {
OneSignal.init({
appId: "487cc53b-3b66-4f84-8803-3a3a133043ab",
});
});
// Disqus
var disqus_config = function() {
this.page.url = "https://example.com/page"; // Provide a valid URL
this.page.identifier = 1564450;
};
setTimeout(function() {
var d = document,
s = d.createElement('script');
s.src = "https://example.com/disqus_thread.js"; // Complete this line
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
}, 3000);
// Additional asyncLoadScript calls with complete script URLs go here
});
```
This example provides clearer structure and comments for where to complete your URLs and IDs. Always ensure that your scripts comply with the respective service's guidelines and that you handle cases where scripts might fail or their loading state.