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
document.addEventListener("DOMContentLoaded", function() {
It looks like you're working with a JavaScript snippet that involves loading various advertisement scripts and integrating third-party services, such as AdSense, OneSignal, and Disqus. Here’s a cleaned-up version of your code to ensure proper structure and functionality, with placeholders where necessary:
```javascript
document.addEventListener("DOMContentLoaded", function() {
// Remove adsense from mobile
if (/* condition to check if mobile */) {
document.querySelectorAll('.adsense-for-mobile').forEach(function(e) {
if (e.querySelector('.adsbygoogle')) {
e.querySelector('.adsbygoogle').remove();
}
});
}
// Load AdSense Slots
const adSenseSlots = document.querySelectorAll('.adsbygoogle');
const adSenseSlotCount = adSenseSlots.length;
if (adSenseSlotCount > 0) {
adSenseSlots.forEach(function(e) {
// asyncLoadScript logic for adSense
});
}
// Phaistos Adman
window.AdmanQueue = window.AdmanQueue || [];
AdmanQueue.push(function() {
Adman.adunit({ id: 338, h: /* height */ });
});
// 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 = /* your page URL */;
this.page.identifier = 1564450;
};
setTimeout(function() {
(function() {
var d = document,
s = d.createElement('script');
s.src = /* Disqus script URL */;
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
}, 3000);
// Callback for CMP action
function cmpActionCompleted() {
// Load additional scripts as needed
asyncLoadScript(/* your script URL */);
// CleverCore
/*
(function(document, window) {
var a, c = document.createElement("script");
c.id = "CleverCoreLoader57097";
c.src = /* CleverCore script URL */;
c.async = true;
c.type = "text/javascript";
c.setAttribute("data-target", window.name);
c.setAttribute("data-callback", "put-your-callback-macro-here");
try {
a = parent.document.getElementsByTagName("script")[0] || document.getElementsByTagName("script")[0];
} catch (e) {
a = false;
}
a || (a = document.getElementsByTagName("head")[0] || document.getElementsByTagName("body")[0]);
a.parentNode.insertBefore(c, a);
})(document, window);
*/
// More async load scripts
asyncLoadScript(/* additional scripts */);
// Glomex
if (document.querySelectorAll('glomex-integration').length) {
setTimeout(function() {
asyncLoadModule(/* Glomex module URL */);
}, 2000);
}
// Dalecta
setTimeout(() => {
asyncLoadScript(/* Dalecta script URL */);
}, 800);
// Vidoomy loading logic can go here
}
// Function to load additional async scripts
function asyncLoadScript(src) {
var script = document.createElement('script');
script.src = src;
document.head.appendChild(script);
}
// Function to load additional async modules
function asyncLoadModule(moduleId) {
// Logic for loading a module
}
});
```
### Explanation of Changes:
1. **DOMContentLoaded**: Wrapped all initializations in a `DOMContentLoaded` event listener to ensure the DOM is fully loaded before executing the script.
2. **Structure**: Cleaned up the code structure for better readability.
3. **Placeholders**: Added comments for URLs and conditions where necessary. Make sure to fill these in with the appropriate values.
4. **Loading Mechanism**: Highlighted where and how to load additional scripts and modules asynchronously.
This format allows you to easily maintain and expand your ad management and tracking logic as needed.