var nOv = 9;// _____var cap = new Array(nOv);cap[1] = "A former Communist Party official talks to CNN's Rebecca MacKinnon about how his empathy for the students resulted in his arrest";cap[2] = "Families still mourn the loss of their loved ones, and some hope for a public investigation. CNN's Rebecca MacKinnon talks with them.";cap[3] = "CNN's Rebecca MacKinnon reports on how student feelings for the U.S. have changed";cap[4] = "A look back at the watershed event - Part VI";cap[5] = "A look back at the watershed event - Part V ";cap[6] = "A look back at the watershed event - Part IV ";cap[7] = "A look back at the watershed event - Part III ";cap[8] = "A look back at the watershed event - Part II ";cap[9] = "A look back at the watershed event - Part I";// -----var title = new Array(nOv);title[1] = "Supporter of Chinese students still watched by government";title[2] = "Families still mourn Tiananmen Square victims";title[3] = "China student demonstrations take aim at the U.S.";title[4] = "Tiananmen 10 years later";title[5] = "Tiananmen 10 years later";title[6] = "Tiananmen 10 years later";title[7] = "Tiananmen 10 years later";title[8] = "Tiananmen 10 years later";title[9] = "Tiananmen 10 years later";// -----var Vurl = new Array(nOv);Vurl[1] = "/video/world/1999/06/02/mackinnon.china";Vurl[2] = "/video/world/1999/06/01/mackinnon.mourn";Vurl[3] = "/video/world/1999/06/03/mackinnon.china";Vurl[4] = "/video/world/1999/06/03/3n.tiananmen.square.6";Vurl[5] = "/video/world/1999/06/03/3n.tiananmen.square.5";Vurl[6] = "/video/world/1999/06/03/3n.tiananmen.square.4";Vurl[7] = "/video/world/1999/06/03/3n.tiananmen.square.3";Vurl[8] = "/video/world/1999/06/03/3n.tiananmen.square.2";Vurl[9] = "/video/world/1999/06/03/3n.tiananman.square.1";// -----// _____//	DONT PLAY WITH THE CODE BELOW// __________________________________var med = "ns";	// Defalt Stream Type - do not changevar str = "28";	// Defalt Stream Size - do not changevar a = 0; 		// Do not change!function forward() {	if ((a > 0) && (a <= (nOv -1))) {	// set the max number 1 less than the total number nOv;		 a++;		 swapImg(a);		 } else {		 a = 1;		 swapImg(a);		 }	}function back() {	if ((a > 1) && (a <= nOv)) {		a--;		swapImg(a);		} else {		a = nOv;		swapImg(a);		}	}function swapImg(a) {	document.control.caption.value = ((nOv - a) + 1) + ")" + cap[a];	return;	}function selected(a) {	if (a == 0) {		document.control.caption.value = "Select a video stream first!";		return;		} else {		vod(Vurl[a] + '.' + med + str + '.html' , title[a]);		return;		}	}