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 asynchronous script loading for website performance?
It looks like you've shared an incomplete JavaScript snippet related to asynchronous loading of various scripts such as Google AdSense, OneSignal, Disqus, and others. This snippet is often part of a website's advertising and analytics setup. I'll help outline a more complete version based on standard practices for handling such integrations.
Here's a refined version with comments indicating where additional code would typically be needed:
```javascript
// Remove adsense for mobile if needed
document.querySelectorAll('.adsense-for-mobile').forEach(function (e) {
e.querySelector('.adsbygoogle').remove();
});
const adSenseSlots = document.querySelectorAll('.adsbygoogle');
if (adSenseSlots.length > 0) {
adSenseSlots.forEach(function (slot) {
// Here you might want to set up or configure the ads
// e.g. slot.innerHTML = ...
});
}
// Phaistos Adman
window.AdmanQueue = window.AdmanQueue || [];
AdmanQueue.push(function () {
Adman.adunit({ id: 338, h: '...' }); // Fill in width/height as necessary
});
// OneSignal setup for push notifications
window.OneSignalDeferred = window.OneSignalDeferred || [];
OneSignalDeferred.push(function (OneSignal) {
OneSignal.init({
appId: "487cc53b-3b66-4f84-8803-3a3a133043ab", // OneSignal App ID
});
});
// Disqus configuration
var disqus_config = function () {
this.page.url = "https://example.com"; // Replace with your page's canonical URL
this.page.identifier = 1564450; // Your unique identifier
};
setTimeout(function () {
(function () {
var d = document,
s = d.createElement('script');
s.src = "https://your-disqus-shortname.disqus.com/embed.js"; // Replace with your Disqus shortname
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
}, 3000);
function cmpActionCompleted() {
// Load various ad scripts
asyncLoadScript('url-to-your-ad-script.js'); // Fill in actual URL or script source
// CleverCore example (commented out as per original snippet)
/*
(function (document, window) {
var a, c = document.createElement("script");
c.id = "CleverCoreLoader57097";
c.src = "https://path/to/clevercore.js"; // Replace with your 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 = null;
}
a ? a.parentNode.insertBefore(c, a) : document.head.appendChild(c);
})(document, window);
*/
// Load additional ad services
asyncLoadScript('url-to-taboola-script.js'); // Replace with actual URL
asyncLoadScript('url-to-google-adsense-script.js'); // Replace with actual URL
// Glomex integration example
if (document.querySelectorAll('glomex-integration').length) {
setTimeout(function () {
asyncLoadModule('url-to-glomex-module.js'); // Provide appropriate Glomex module URL
}, 2000);
}
// Dalecta and Vidoomy examples
setTimeout(() => asyncLoadScript('url-to-dalecta-script.js'), 800); // Replace with actual URL
// Add additional Vidoomy setup here if needed
}
```
### Key Improvements & Considerations:
1. **Proper Logging & Error Handling**: As you implement asynchronous loading of scripts, it is beneficial to add proper error handling and logging for debugging.
2. **Customize URLs**: Be sure to replace placeholder URLs with actual URLs for the scripts you're loading.
3. **Maintainability**: Organize the loading of scripts in a way that makes the code easily maintainable, especially if you or someone else might work on it later.
4. **Performance**: Consider loading non-essential scripts after the main content load to improve site speed and user experience.
This code serves as a starting point, and you can expand it based on your specific requirements.