var news, people, icac, drama, misc;

news = new Array();
people = new Array();
icac = new Array();
drama = new Array();
misc = new Array();

drama[9] = new Array ("2001 Drama Series - 1-4 Episodes", "self.location.href='http://tv.icac.org.hk/eng/drama/index.html'");
drama[8] = new Array ("1998 Drama Series - 5 Episodes", "self.location.href='http://tv.icac.org.hk/eng/drama/index98.html'");
drama[7] = new Array ("1996 Drama Series - 5 Episodes", "self.location.href='http://tv.icac.org.hk/eng/drama/index96.html'");
drama[6] = new Array ("1994 Drama Series - 5 Episodes", "self.location.href='http://tv.icac.org.hk/eng/drama/index94.html'");
drama[5] = new Array ("1992 Drama Series - 7 Episodes", "self.location.href='http://tv.icac.org.hk/eng/drama/index92.html'");
drama[4] = new Array ("1989 Drama Series - 13 Episodes", "self.location.href='http://tv.icac.org.hk/eng/drama/index89.html'");
drama[3] = new Array ("1985 Drama Series - 6 Episodes", "self.location.href='http://tv.icac.org.hk/eng/drama/index85.html'");
drama[2] = new Array ("1982 Drama Series - 7 Episodes", "self.location.href='http://tv.icac.org.hk/eng/drama/index82.html'");
drama[1] = new Array ("1979 Drama Series - 7 Episodes", "self.location.href='http://tv.icac.org.hk/eng/drama/index79.html'");
drama[0] = new Array ("1975 Drama Series - 13 Episodes", "self.location.href='http://tv.icac.org.hk/eng/drama/index75.html'");

function prog_list(prog) {
	document.write("<option value='0' selected>More ...</option>");	
	for (var i=eval(prog+".length")-1; i>=0; i--) {
		document.write("<option value=\"" + eval(prog+"[i][1]") + "\">" + eval(prog+"[i][0]") + "</option>");
	}
}