var nOv = 7;// _____var cap = new Array(nOv);cap[1] = "CNN's Jim Clancy reports on the economic impact of stopping river traffic on the Danube through Europe (June 29)";cap[2] = "CNN's Nic Robertson reports on findings from a mass killing site in Yugoslavia (June 29)";cap[3] = "CNN's Alessio Vinci reports on the demonstrations calling for Milosevic's resignation. (June 29)";cap[4] = "CNN's Nic Robertson reports that returning Kosovars want their former jobs back. (June 29)";cap[5] = "CNN's Charlayne Hunter-Gault reports the homes of gypsies -- branded as collaborators by ethnic Albanians -- are being burned ";cap[6] = "U.N. Human Rights Commissioner Mary Robinson reports on her visit with returning Kosovars (June 30).";cap[7] = "CNN's Charlayne Hunter-Gault reports on fearful Serbs in Kosovo (June 30)";// -----var title = new Array(nOv);title[1] = "Danube damage disrupts European economy";title[2] = "Forensic experts sift through war crime site";title[3] = "Milosevic facing public outrage";title[4] = "Returning ethnic Albanians want old jobs back";title[5] = "Gypsies caught in the middle";title[6] = "U.N. Human Rights Commissioner visits Kosovo";title[7] = "Some fearful Serbs in Kosovo flee, some stay";// -----var Vurl = new Array(nOv);Vurl[1] = "/video/world/1999/06/29/clancy.danube.closing";Vurl[2] = "/video/world/1999/06/29/robertson.kosovo";Vurl[3] = "/video/world/1999/06/29/vinci.opposition";Vurl[4] = "/video/world/1999/06/29/robertson.jobs";Vurl[5] = "/video/world/1999/06/27/hunter.gault.gypsy";Vurl[6] = "/video/world/1999/06/30/robinson.sot";Vurl[7] = "/video/world/1999/06/30/huntergault.serbs.kosovo";// -----// _____//	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;		}	}