var format;
var mon;
format= new Date();
mon = new Date();
mon = mon.getMonth() + 1;
document.write( mon + "/" + format.getDate()  + "/" + format.getFullYear() + ":" + format.getHours()  + ":" + format.getMinutes() + ":" + format.getSeconds());
//document.write(Date() + ".");

