var themonth= rightnow.getMonth(); var today= rightnow.getDate(); var theyear= rightnow.getYear(); var thehours= rightnow.getHours(); var themins= rightnow.getMinutes(); var theseconds= rightnow.getSeconds();
// month starts at 0 themonth+=1;
if (theyear<2000) theyear+=1900;
if (thehours<10) thehours="0"+thehours; if (themins<10) themins="0"+themins; if (theseconds<10) theseconds="0"+theseconds;
if (thehours<12) var ampm="AM"; else var ampm="PM";
if (thehours==0) thehours=12; if (thehours>=13) thehours-=12;