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
```javascript
It appears that you're working with a script to manage various ad implementations and other integrations for a web page. The script includes various asynchronous script loads for services like Google AdSense, OneSignal, Disqus, and others. However, it seems that some parts of the code are incomplete or contain placeholder comments and strings.
Here’s a cleaned-up version that organizes the elements more clearly and fills in the blanks where reasonable, while still maintaining the structure of your original script:
```javascript
// Function to asynchronously load scripts
function asyncLoadScript(src) {
var script = document.createElement('script');
script.src = src;
script.async = true;
document.head.appendChild(script);
}
// Managing AdSense for mobile devices
if (/* condition for mobile ads */) {
document.querySelectorAll('.adsense-for-mobile').forEach(function(e) {
e.querySelector('.adsbygoogle').remove();
});
}
const adSenseSlots = document.querySelectorAll('.adsbygoogle');
const adSenseSlotCount = adSenseSlots.length;
if (adSenseSlotCount > 0) {
adSenseSlots.forEach(function(e) {
// Code to handle each adSense slot can go here
});
}
// Phaistos Adman
window.AdmanQueue = window.AdmanQueue || [];
AdmanQueue.push(function() {
Adman.adunit({ id: 338, h: /* Ad height here */ });
});
// OneSignal Initialization
window.OneSignalDeferred = window.OneSignalDeferred || [];
OneSignalDeferred.push(function(OneSignal) {
OneSignal.init({
appId: "487cc53b-3b66-4f84-8803-3a3a133043ab",
});
});
// Disqus Configuration
var disqus_config = function() {
this.page.url = "/* Page URL here */";
this.page.identifier = 1564450;
};
setTimeout(function() {
(function() {
var d = document,
s = d.createElement('script');
s.src = "/* Disqus script URL here */";
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
}, 3000);
// Function to handle completed actions
function cmpActionCompleted() {
// OCM & DFP
asyncLoadScript('/* OCM & DFP script URL here */');
// CleverCore (commented out)
/*
(function(document, window) {
var c = document.createElement("script");
c.id = "CleverCoreLoader57097";
c.src = "/* CleverCore script URL here */";
c.async = true;
c.type = "text/javascript";
c.setAttribute("data-target", window.name);
c.setAttribute("data-callback", "put-your-callback-macro-here");
var a = document.getElementsByTagName("head")[0] || document.getElementsByTagName("body")[0];
a.parentNode.insertBefore(c, a);
})(document, window);
*/
// Taboola/Project Agora
asyncLoadScript('/* Taboola/Project Agora script URL here */');
// For Google AdSense
if (document.querySelectorAll('.adsbygoogle').length) {
asyncLoadScript('/* Google AdSense script URL here */');
}
// Phaistos Adman (repeat section)
asyncLoadScript('/* Another Phaistos Adman script URL here */');
// Glomex Integration
if (document.querySelectorAll('glomex-integration').length) {
setTimeout(function() {
asyncLoadModule('/* Glomex module URL here */');
}, 2000);
}
// Dalecta
setTimeout(() => asyncLoadScript('/* Dalecta script URL here */'), 800);
// Vidoomy
asyncLoadScript('/* Vidoomy script URL here */');
}
```
### Key Notes:
1. **Comments**: I added comments to indicate where URLs need to be filled in.
2. **Async Script Loader**: The `asyncLoadScript` function dynamically creates a script tag and appends it to the head, so that it loads asynchronously.
3. **General Structure**: Ensure that conditions for various actions (e.g. mobile checks, element existence checks) are properly defined for your use case.
4. **Additional Logic**: You may need to flesh out the logic in the placeholders, ensuring that they align with the functionality you want to achieve.
Feel free to modify this as per your requirements!