{
     var today = new Date();
     var year = today.getFullYear();
     var boo = today.getMonth() + ((today.getMonth() < 13) ? 1 : -1);
     var month = boo;
     var date = today.getDate();
     var day = today.getDay();
     var show = year + "³â" + month + "¿ù" + date + "ÀÏ";
     if(day == 1)
          show += "(" + "¿ù" + ")";
     else if(day == 2)
          show += "(" + "È­" + ")";
     else if(day == 3)
          show += "(" + "¼ö" + ")";
     else if(day == 4)
          show += "(" + "¸ñ" + ")";
     else if(day == 5)
          show += "(" + "±Ý" + ")";
    document.write("");
    if(day == 0){
          document.write(show);
          document.writeln("(ÁÖÀÏ)".fontcolor("red"));
    }
    else if(day == 6){
          document.write(show);
          document.writeln("(Åä)".fontcolor("blue"));
    }
    else {
          document.writeln(show);
    }
    document.write("");
}
