﻿folderMenuName = "Thông tin Văn hoá-Khoa học";
folderMenu = [
	["(Thư mục ngoài)","../", 1],
	["Kinh tế trí thức","kinhtetrithuc2009a.html",0],
	["Phát triển cơ điện tử ở Việt Nam","cdt.htm",0],
	["Phải có tư duy mới để tạo ra khoán 10 trong KHCN","thu_tuong.htm",0],
	["Thomas L. Friedman: Cuối cùng đó là một trái đất phẳng","the_gioi_phang.htm",0],
	["Jelen János, từ Ngọc Linh đến Hội An","jasnos.htm",0],
	["Triển lãm tem Việt Nam ở Hungary","trien_lam.htm", 0],
	["Về ngày 20/8, Quốc khánh Hungary","quoc_khanh.htm", 0],
	["Trường ĐH Kỹ thuật và Kinh tế Budapest","dhktkt.htm", 0],
	["Sách mới về Hungary","sach_moi.htm",0],
	["Kertész Imre & Koltai Lajos - Không số phận","dan_hung.htm",0],
	["Kertész Irme đoạt giải Nobel văn học 2002","nobel.htm", 0],
	["Ablakomba, ablakomba magyar népdal","ablakomba.htm",0]
];


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>\
			");
		}
	}
}