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


NewEntriesList += "	<div class=\"all_link_mini\"><a href=\"http://www.token-web.com/news/2010/07/40.html\">トーケン創立40周年記念パーティー</a></div>\n";

NewEntriesList += "	<div class=\"all_link_mini\"><a href=\"http://www.token-web.com/news/2010/07/post-24.html\">小松精練㈱が屋上緑化や壁面緑化・室内緑化商品を披露</a></div>\n";

NewEntriesList += "	<div class=\"all_link_mini\"><a href=\"http://www.token-web.com/news/2010/07/--1.html\">石川ブランド優秀新製品に屋上緑化システム「グリーンビズ-Ｇ」認定</a></div>\n";

NewEntriesList += "	<div class=\"all_link_mini\"><a href=\"http://www.token-web.com/news/2010/06/post-23.html\">北陸銀行本店に屋上緑化システムを設置</a></div>\n";

NewEntriesList += "	<div class=\"all_link_mini\"><a href=\"http://www.token-web.com/news/2010/05/post-22.html\">「第２３回 石川県中小企業技術展」屋上緑化システム「グリーンビズ-Ｇ」出展終了</a></div>\n";

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