var nOv = 3;// _____var cap = new Array(nOv);cap[1] = "The CEO of All-Tech Investment Group, Harvey Houtkin, talks about the Atlanta shootings (July 29)";cap[2] = "Atlanta Mayor Bill Campbell announces that the suspect in the shootings has committed suicide (Courtesy WSB) (July 29)";cap[3] = "Barton, described by friends and neighbors as normal, left notes on the bodies of his family. CNN's Mike Boettcher reports. (July 30)";// -----var title = new Array(nOv);title[1] = "CEO of All-Tech Investment Group interview";title[2] = "Atlanta shooting suspect commits suicide";title[3] = "Atlanta killer admits to murders in notes left behind";// -----var Vurl = new Array(nOv);Vurl[1] = "/video/us/1999/07/29/houtkin.interview";Vurl[2] = "/video/us/1999/07/29/campbell.suicide";Vurl[3] = "/video/us/1999/07/30/shootings.notes";// -----// _____//	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;		}	}