<!--
	function newUp(y, m, d, c) {
	  delDay = 180; // 何日後に削除するか
	  oldDay = new Date(y + "/" + m + "/" +d);
	  newDay = new Date();
	  d =(newDay - oldDay) / (1000 * 24 * 3600);
	  if(d <= delDay) {
	    // Newマーク
	    if(c == "new") document.write("<b><font color='Red' size='-1'>New! </font></b>");
	    // Upマーク
	    if(c == "up") document.write("<b><font color='Red' size='-1'> Up!   </font></b>");
	    // COPY RIGHT
	    if(c == "copy") document.write("みなかみ町国際交流協会<BR>&copy; 2007-2010 Minakami International Friendship Association");
	    // COPY RIGHT MOBILE
	    if(c == "mcopy") document.write("&copy; 2007 - 2008 MIFA");
	  }
	}
// http://javascript.eweb-design.com/0618_num.htm
-->
