var note = new Array();
note[1] = "必ず使用する機種でフォーマットしてください。" ;
note[2] = "デジタルカメラのファームウェアをV1.05以上にアップデートしてください。" ;
note[3] = "1GBを超える容量をご使用される場合は、デジタルカメラのファームウェアをV1.01にアップデートして下さい。"


function openNote (notice_no) {
	 No_n = notice_no;
	var notewin = open ("", "Notice", "width=600,height=130,scrollbars=yes,resizable=yes");
	notewin.focus()
	var html =
	"<html><head><title>注釈</title>\n"
	+"<META HTTP-EQUIV=\"Content-Type\" CONTENT=\"text/html;CHARSET=Shift_JIS\">\n"
	+"</head>\n"
	+"<body bgcolor=\"#ffffff\">\n"
	+"<H2><CENTER>注　釈</CENTER></H2>\n"
	
	notewin.document.write(html);
	notewin.document.write("<p>");
	notewin.document.write("<p>");
	notewin.document.write(No_n);
	notewin.document.write(":");
	notewin.document.write (note[No_n])
	notewin.document.write("<br>\n");
	notewin.document.close();
}

