var nOv = 4;// _____var cap = new Array(nOv);cap[1] = "CNN's Walter Rodgers has the Israeli reaction to the shooting at the Jewish community center (August 11)";cap[2] = "Children from the day camp thank the law enforcement officers who helped them. CNN's Anne McDermott has a look.(August 11)";cap[3] = "CNN's Rusty Dornin reports on developments following the shooting (August 12)";cap[4] = "CNN's Greg Lefevre interviews Furrow's former neighbors (August 12)";// -----var title = new Array(nOv);title[1] = "L.A. shooting rings alarm bells in Israel";title[2] = "L.A. shooting suspect may face federal charges ";title[3] = "Shooting suspect returned to L.A. to face charges ";title[4] = "Residents of Washington town recall Furrow";// -----var Vurl = new Array(nOv);Vurl[1] = "/video/us/1999/08/11/center.shooting.ap";Vurl[2] = "/video/us/1999/08/11/mcdermott.jcc";Vurl[3] = "/video/us/1999/08/12/shooting.wed.wrap.ap";Vurl[4] = "/video/us/1999/08/12/furrow.metaline.ap";// -----// _____//	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;		}	}