Presuming you get the timestamp in Helsinki time, I would create a date object set to midnight January 1 1970 UTC (for disregarding the local timezone settings of the browser). Then just add the needed number of milliseconds to it.
var _date = new Date( Date.UTC(1970, 0, 1, 0, 0, 0, 0) );_x000D_
_date.setUTCMilliseconds(1270544790922);_x000D_
_x000D_
alert(_date); //date shown shifted corresponding to local time settings_x000D_
alert(_date.getUTCFullYear()); //the UTC year value_x000D_
alert(_date.getUTCMonth()); //the UTC month value_x000D_
alert(_date.getUTCDate()); //the UTC day of month value_x000D_
alert(_date.getUTCHours()); //the UTC hour value_x000D_
alert(_date.getUTCMinutes()); //the UTC minutes value
_x000D_
Watch out later, to always ask UTC values from the date object. This way users will see the same date values regardless of local settings. Otherwise date values will be shifted corresponding to local time settings.