var nOv = 6;// _____var cap = new Array(nOv);cap[1] = "CNN's Susan Candiotti has background on the plight of Elian Gonzalez. (January 5)";cap[2] = "Watch the INS announcement that Elian should be returned to his father. (January 5)";cap[3] = "Havana Bureau Chief Lucia Newman reports on how Cubans are reacting to the decision to return Elian Gonzalez to Cuba. (January 5)";cap[4] = "Correspondent Mark Potter reports on anger in the Cuban exile community over the decision by U.S. officials that Elian Gonzalez should be returned to Cuba. (January 5)";cap[5] = "CNN interview with Elian's cousin and the lawyer for the Gonzalez family giving their perspective on the case. (January 6)";cap[6] = "CNN's Greta Van Susteren gives a legal analysis of the case. (January 6)";// -----var title = new Array(nOv);title[1] = "Sources: Cuban boy to be returned to father";title[2] = "INS:  Cuban boy should be returned to father";title[3] = "Cuban government reacts cautiously to INS decision to return boy to Cuba";title[4] = "Cuban exile community in uproar over decision to return Elian to Cuba";title[5] = "Cuban boy's relatives begin fight to block his return to Cuba";title[6] = "What is the legal status of the custody fight over Elian Gonzalez?";// -----var Vurl = new Array(nOv);Vurl[1] = "/video/us/2000/01/05/sc.cuba.boy.adv";Vurl[2] = "/video/us/2000/01/05/ins.newser";Vurl[3] = "/video/us/2000/01/05/ln.cuba.boy";Vurl[4] = "/video/us/2000/01/05/mp.cuba.boy";Vurl[5] = "/video/us/2000/01/06/cuba.boy.intvw";Vurl[6] = "/video/us/2000/01/06/cuba.boy.analysis";// -----// _____//	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;		}	}