function upt(y,m,d,t) {
 var today = new Date();
 var day = new Date(y,m-1,d+8);
 if (today < day) {
  document.write("<font color='#0000ff' size='-1' class='upt'><B><I>Update! </I></B></font>");
 }
 if (t != undefined) {
  document.write("<font color='#007700' size='-1'>[",y,"/",m,"/",d,t,"]</font>");
 }
}

function up(y,m,d) {
 upt(y,m,d);
}

function newpt(y,m,d,t) {
 var today = new Date();
 var day = new Date(y,m-1,d+8);
 if (today < day) {
  document.write("<font color='#ff0000' size='-1' class='newpt'><B><I>New! </I></B></font>");
 }
 if (t != undefined) {
  document.write("<font color='#007700' size='-1'>[",y,"/",m,"/",d,t,"]</font>");
 }
}

function newp(y,m,d) {
 newpt(y,m,d);
}

function newspt(y,m,d,t) {
 var today = new Date();
 var day = new Date(y,m-1,d+8);
 if (today < day) {
  document.write("<font color='#007700' size='-1' class='newspt'><B><I>News! </I></B></font>");
 }
 if (t != undefined) {
  document.write("<font color='#007700' size='-1'>[",y,"/",m,"/",d,t,"]</font>");
 }
}

function newsp(y,m,d) {
 newspt(y,m,d);
}
