<!--
// 一定期間New/Upマークを表示する


function mark(y, m, d, c) {
  delDay = 1; // 何日後に削除するか
  oldDay = new Date(y + "/" + m + "/" +d);
  newDay = new Date();
  d =(newDay - oldDay) / (1000 * 24 * 3600);
  if(d <= delDay) {

    document.write('<img src="http://cinema-j.com/image/mark-r.gif" border="0" />');

  }
  if(d > delDay) {

    document.write('<img src="http://cinema-j.com/image/mark-b.gif" border="0" />');

  }  

}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->