// JavaScript Document
function writeBacknumberSelector() {
	var html = "";
	html += '<select>';
	html += '<option value="" selected>バックナンバーはこちら</option>';
	html += '<option value="">テンプレート1</option>';
	html += '<option value="">テンプレート2</option>';
	html += '<option value="">テンプレート3</option>';
	html += '<option value="">テンプレート4</option>';
	html += '<option value="">テンプレート5</option>';
	html += '</select>';
	document.write(html);
}
