[eluser]obiron2[/eluser]
you can get your (the client PC) timezone using javascript
Code:
<!--
var tzo=(new Date().gettimezoneOffset()/60)*(-1);
// -->
and if you are using PHP5 you can get the server offset using
timezone_offset_get()
and you should be able to work out the difference from there.