Now = new Date();
1: Y = Now.getFullYear();2: MM = Now.getMonth()+1;3: D = Now.getDate();4: h = Now.getHours();5: m = Now.getMinutes();6: s = Now.getSeconds(); 7: dsp = String(Y) + "/" + String(MM) + "/" + String(D) + " " + String(h) + ":" + String(m) + ":" + String(s); 8: gotoAndPlay (2);