// 最新の記事を表示する 
function NewEntries(){
	// 変数の初期化
	var NewEntriesList = "";	// 最新の記事一覧


NewEntriesList += "	<div class=\"all_link_mini\"><a href=\"http://www.token-web.com/news/2012/01/post-27.html\">グリーンビズ事業　しいのき迎賓館にてプレス発表</a></div>\n";

NewEntriesList += "	<div class=\"all_link_mini\"><a href=\"http://www.token-web.com/news/2012/01/post-26.html\">新年記事</a></div>\n";

NewEntriesList += "	<div class=\"all_link_mini\"><a href=\"http://www.token-web.com/news/2011/11/post-25.html\">「大型スーパーに屋上緑化」新聞記事掲載</a></div>\n";

NewEntriesList += "	<div class=\"all_link_mini\"><a href=\"http://www.token-web.com/news/2011/11/post-24.html\">清掃奉仕作業を実施</a></div>\n";

NewEntriesList += "	<div class=\"all_link_mini\"><a href=\"http://www.token-web.com/news/2011/11/post-23.html\">太陽光発電付マンション計画</a></div>\n";

	// 最新記事を表示
	document.getElementById("NewEntriesList").innerHTML = NewEntriesList;
}

// 月別プルダウン表示対応
function CheckArachivePullDown(select_value){
	if(select_value != ""){
		location.href = select_value;
	}
	else{
		return false;
	}
}

