Thessaloniki: A doctor was sentenced for a “bag” of 5,000 euros

The Three-member Misdemeanor Court of Thessaloniki found him guilty of bribery of an employee, with the recognition of the mitigating factor of his previous cohabitation, while the sentence was suspended.

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

(function() {

​ It⁢ looks like you're working with JavaScript⁤ that handles the integration of various advertising and monitoring scripts on a webpage. The provided code snippet⁣ is fragmented and appears to contain placeholders and incomplete segments. Here’s ‍a brief overview of what each part seems to be intended for, along with ⁣how to properly‍ structure a complete version of the code:

### Code ⁢Overview

1. **AdSense Management**:

- It appears you are checking for AdSense slots‍ and removing them based on certain⁤ conditions (possibly device type).

⁤- The script also looks to ‍load AdSense slots asynchronously.

2. **Adman Integration**:

- There's a placeholder for the Phaistos Adman ad unit configuration.

3. **OneSignal Push Notifications**:

- The code initializes the OneSignal service for push notifications using an application ID.

4. ⁣**Disqus Comment System**:

- A configuration function for Disqus comments, setting the page URL and identifier, followed by a script loading section.

5. **Asynchronous Script Loading**:

- Multiple instances‍ of a function `asyncLoadScript`, which ‍is ‍presumably to‌ load scripts asynchronously for​ various ad services.

6. **Other Ad Services**:

- There are placeholders for other ad networks, including CleverCore, Taboola/Project Agora, and Vidoomy.

### Suggestions for Completing the ⁣Code

To complete the script, you will need to:

1. ⁤Fill ⁤in the​ URLs for the scripts you want to load.

2. Properly wrap all strings and function calls.

3. Handle‌ any missing function implementations,⁢ such as `asyncLoadScript` and `asyncLoadModule`.

Here's an example of how to structure the code based on your snippet:

```javascript

(function() {

⁣ // AdSense Management

if (/* some condition */) {

document.querySelectorAll('.adsense-for-mobile').forEach(function(e) {

‌ e.querySelector('.adsbygoogle').remove();

});

}

const adSenseSlots = document.querySelectorAll('.adsbygoogle');

if (adSenseSlots.length ⁤> 0) {

‌ adSenseSlots.forEach(function(e) {

​ // Load AdSense slots or additional logic here

​ });

}

// Phaistos Adman

window.AdmanQueue = window.AdmanQueue || [];

AdmanQueue.push(function(){

⁢ ⁣ ⁣Adman.adunit({id: 338, h: 'height_value_here'});

// Add other parameters as⁤ necessary

⁣});

​ // 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 = ​window.location.href; ‌// ⁣Ensure this is the dynamic URL of the page

⁤ this.page.identifier = 1564450; // Ensure this is a⁣ unique‌ identifier

‌ };

‍ setTimeout(function(){

var d = document, s = d.createElement('script');

​ s.src = ⁢'https://your-disqus-url.js'; // Add your⁢ Disqus URL

​ ​ s.setAttribute('data-timestamp', +new Date());

​ ⁣ (d.head || d.body).appendChild(s);

}, 3000);

function asyncLoadScript(src) {

‌ ​ var script = document.createElement('script');

⁢ script.src = src;

⁣ script.async = true;

document.head.appendChild(script);

⁣ ⁤}

// Examples of loading scripts for ad networks

‌ asyncLoadScript('https://example.com/ad-network.js'); // Replace with actual URL

// For Google AdSense

if (document.querySelectorAll('.adsbygoogle').length)⁤ {

asyncLoadScript('https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js');

}

​ // Glomex

if (document.querySelectorAll('glomex-integration').length) {

setTimeout(function(){

‍ asyncLoadModule('https://glomex-integration-url.js'); // Replace with actual URL

}, 2000);

‌ }

‌ // Additional ad networks can be added similarly

// Vidoomy

setTimeout(() => asyncLoadScript('https://vidoomy-integration-url.js'), 800);

})();

```

### Important Notes

- Ensure all placeholders (like script URLs) are ​correctly filled.

-‌ When dealing with third-party scripts, ensure they are ⁤loaded in compliance with their respective policies (e.g., ad viewability guidelines).

- Test the integration ⁣thoroughly to ensure all scripts function as expected without conflicts.

Leave a Replay