/* Old script Starts here

 dt = new Date();
localHours = dt.getHours();
minutes = dt.getMinutes();
greekHoursOffset = 3 // Greece is 3 hours after GMT - when clock changes due to daylight saving this will be 2
currentTimeZoneOffsetInHours = -dt.getTimezoneOffset()/60 // if local computer is GMT+5 it returns -5
// currentTimeZoneOffsetInHours = -6
var greekHours; // the real Greek Hours

diffHours = currentTimeZoneOffsetInHours - greekHoursOffset; // difference in hours between Greece and local time

greekHours = (24 + localHours - diffHours) % 24; // calculate the Hours in Greece relative to local GMT

Old script ends here*/


Today = new Date();

hrs = Today.getUTCHours();
minutes = Today.getUTCMinutes();
dlt=0;
if(Today.getMonth()>2 && Today.getMonth()<10)dlt=1;

greekHours = hrs+2+dlt;

if(greekHours>=24)greekHours=greekHours-24;
if(minutes.length==1)minutes="0"+minutes;
