// JavaScript Document

function GetHeight(ID,NAME)
{
  if (document.height) 
  {
     document.getElementById(ID).style.height = parent.frames[NAME].document.height +20 +"px" ;
  }
  else
  {
     document.getElementById(ID).style.height = parent.frames[NAME].document.body.scrollHeight +20 +"px";
  }
}

function DispNew(y,m,d,h) 
{
  var today=new Date();
  var nt=48; var c=new Date(y,m-1,d,h);

  if (today-c<3600000*nt) 
  {
     document.write('<img src="./image/new_mark.gif" width="40" height="11" alt="NEW" />')
  }
}
