[FMX] Obtaining the server time, not client time?

Hi, does anyone know if it is possible to obtain the time (by functions similar to getSeconds) of the server the flash file is hosted on, instead of the client who is viewing the movie?

Thing is, I have a very simple clock that displays the time in New Zealand (where I will be going), but it only display the time correctly for GMT+1 right now. If a client from New Zealand or US connects, they will see the wrong time :confused:

Any way to fix this?

So right now i use:

newtime = timedate.getSeconds() + 3600*11;
timedate.setSeconds(newtime);