// Timezone
//e not supported yet
//I not supported yet
O: function(){
var t = pad(Math.abs(jsdate.getTimezoneOffset()/60*100), 4);
if (jsdate.getTimezoneOffset() > 0) t = "-" + t; else t = "+" + t;
return t;
},
P: function(){
var O = f.O();
return (O.substr(0, 3) + ":" + O.substr(3, 2));
},
//T not supported yet
//Z not supported yet
// Full Date/Time
c: function(){
return f.Y() + "-" + f.m() + "-" + f.d() + "T" + f.h() + ":" + f.i() + ":" + f.s() + f.P();
},
//r not supported yet
U: function(){
return Math.round(jsdate.getTime()/1000);
}
};