﻿folderMenuName = "Trang Văn hoá-Thông tin";
folderMenu = [
	["(Thư mục ngoài)","../", 1],
	["Kế hoạch hoạt động của Ban Văn hoá-Thông tin","ke_hoach.htm", 0],
	["Thông tin Văn hoá-Khoa học Công nghệ Việt-Hung","thong_tin/index.htm", 1],
	["Ấn phẩm của Hội","an_pham/index.htm", 1],
	["Thông tin Hội viên và các bạn bè","hoi_vien.htm",0],
	["Đăng ký Hội viên mới","dang_ky.htm",0],
	["Cộng đồng Việt Nam ở Hungary","cong_dong/index.htm",1]
];


function leftMenu(itemNo){
	for( i = 0; i  < folderMenu.length; i++ )
	{
		document.write("\
              <tr> \
                <td width='5%'>&nbsp;</td>\
                <td width='5%' align='center'>");
		if(folderMenu[i][2]==1)
			document.write("<img src='"+sitePath+"assets/images/arrow.gif' width=14 height=12></td>");
		else
			document.write("<img src='"+sitePath+"assets/images/arrow-sm.gif' width=7 height=12></td>");
		//if(i == itemNo)
		if(folderMenu[i][0][0] != '(' && document.location.href.search(new RegExp( "("+folderMenu[i][1]+")", "i" )) >= 0)
		{
			document.write("\
                <td width='90%' class='small'><p align='justify'><b>"+folderMenu[i][0]+"</b></p></td>\
				</tr>\
			");
		}
		else
		{
			document.write("\
                <td width='90%' class='small'><p align='justify'><a href='"+folderMenu[i][1]+"'>"+folderMenu[i][0]+"</a></p></td>\
				</tr>\
			");
		}
	}
}