var date;
var y,m,d,h,i,s;
var now;
var set_Time = "2007/06/27 22:00:00";

url = new String(window.location);
date = new Date();
y = new String(date.getFullYear());
m = new String(date.getMonth()+1);
d = new String(date.getDate());
h = new String(date.getHours());
i = new String(date.getMinutes());
s = new String(date.getSeconds());
if (m.length==1) m = "0"+m;
if (d.length==1) d = "0"+d;
if (h.length==1) h = "0"+h;
if (i.length==1) i = "0"+i;
if (s.length==1) s = "0"+s;
now = y+"/"+m+"/"+d+" "+h+":"+i+":"+s;

