document.writeln("<style type='text/css'><!--")
if (navigator.appVersion.indexOf("Win")!=-1) {
  document.write(".f10 {font-size: 11px !important; }");
  document.write(".f10m {font-size: 11px !important; }");
  document.write(".f10h {font-size: 11px !important; }");
}
document.writeln("--></style>");


function backNumber(series){//seriesはファイルの数字
//volumeは最新のvol数

//フォームの書き出し
document.write("<form>");
document.write("<select onChange='location.href=this.options[this.selectedIndex].value'>");
if(series == 0){
document.write("<option value='#' selected>その他の商品はコチラ</option>");
}else{
document.write("<option value='#'>その他の商品はコチラ</option>");
}

volume = month.length;
//alert(volume);

for(i=volume ; i>=1 ; i--){

//ボリュームナンバーの桁数を2桁数字にする
var volStr = i  + "";
	if(volStr.length == 1){
		volStr = "0" + volStr;
	}
//alert(volStr);
	if((series)==i){
		document.write("<option value='newitem"+ volStr +".html' selected>"+ month[i-1] +"</option>")
	}else{
		document.write("<option value='newitem"+ volStr +".html'>"+ month[i-1] +"</option>")
	}
}

document.write("<option value='newitem.html'>最新ページへ</option>");

document.write("</select>");
document.write("</form>");

}
