Index: Dates.js
===================================================================
--- Dates.js	(revision 3429)
+++ Dates.js	(working copy)
@@ -26,6 +26,7 @@
 	t = t.replace(/0DD/g,String.zeroPad(this.getDate(),2));
 	t = t.replace(/DDth/g,this.getDate()+this.daySuffix());
 	t = t.replace(/DD/g,this.getDate());
+	t = t.replace(/TZD/g,(this.getTimezoneOffset() < 0 ? '-' : '+') + (this.getTimezoneOffset() / 60 < 10 ? '0' : '') + (this.getTimezoneOffset() / 60) + (this.getTimezoneOffset() % 60 == 0 ? ':00' : ':30'));
 	return t;
 };
 

