function LinkSelect(form, sel)
{
	adrs = sel.options[sel.selectedIndex].value;
	if (adrs != "-" ) location.href=adrs;
}


function back_number(){
		document.write("<FORM>");
		document.write("<SELECT NAME='selLink' onChange='LinkSelect(this.form, this)'>");
		document.write("<option selected value='-'>-- SELECT NEWS TITLE --</option>");
		document.write("<option value='new.html'>　●最新ニュース</option>");
	
	for(i=0;i<amout;i++){
		document.write("<option value='"+news[i].substring(2, 4)+news[i].substring(5, 7)+news[i].substring(8, 10)+".html'>"+"　●"+news[i]+"</option>");
	}
		document.write("</SELECT>");
		document.write("</FORM>");
}

function load(){
	document.write(news[0]);
}