<!----- Date Display and Time (onMouseOver) -------->
<!-- 
function printDate()
{
  var today = new Date();
  var day=today.getDate();
  var month = today.getMonth() + 1;
  var year = today.getFullYear().toString();
  var box=document.forms[0].DateBox;
  if ( ( month /10 ) < 1 )  {
    month=("0" + month).toString(); 
  }
  if ( (day/10)<1)  {
    day=("0" + today.getDate()).toString();
  }
  box.value= year + " ³â " + month + " ¿ù " + day + " ÀÏ";
}

function printTime()
{
  var box = document.forms[0].DateBox;
  var thetime=new Date();
  if (thetime.getMinutes() / 10 <1 )  {
    box.value=thetime.getHours() + " ½Ã " + "0" + thetime.getMinutes()  + " ºÐ";
  }
  else  {
    box.value=thetime.getHours() + " ½Ã " + thetime.getMinutes() + " ºÐ";
  }
}
// -->
<!------------------ ¿©±â±îÁö --------------->

