The format looks like unix time. You can get this using the valueOf method of a Date object. I imagine that the part after the + sign is the time zone offset. You can get this with the getTimezoneOffset method.
- , Date:
Date.prototype.getTimestamp=function(){
var to = this.getTimezoneOffset()/60;
to = (to < 10) ? "0"+to: to;
return this.valueOf()
+"+"+to+"00";
}
** , getTime, jcubic.