
function showSelect(index) {

	aNum = new Array("","1", "2", "11", "3", "4", "6", "7", "5", "8", "9")
	aName = new Array("",
		"中華民國志願服務協會",
		"台北市志願服務協會　", 
		"中華志願服務推廣中心",
		"志願服務出版品介紹  ",
		"金駝獎　　　　　　　",
		"志願服務獎章　　　　",
		"十大績優志工團隊　　",
		"十大志工媽媽楷模　　",
		"志工學苑　　　　　　",
		"支援您專線　　　　　")
	rwrite("<br><br><br>")
	for (i=1; i <= 10; i++) {
		j = aNum[i]
		rwrite("<a href=intr" + j + ".htm  onmouseover=\"img_show(document.no" + j + ", 'no" + j + "g.gif')\" onmouseout=\"img_show(document.no" + j + ", 'no" + j + "r.gif')\"><img name=no" + j + " src=images/no" + j + "r.gif border=0 alt=" + aName[i] + "></a><br><br>")
	}

	
}