var nOv = 8;// _____var cap = new Array(nOv);cap[1] = "How to check an airline's safety record";cap[2] = "Safety standards of international airlines";cap[3] = "Lessons learned from air disasters of the past";cap[4] = "CNN talks with a doctor who ensures that pilots are healthy enough to fly";cap[5] = "How airline safety measures are determined";cap[6] = "Investigators say they have found no sign of mechanical or weather related problems that could explain the crash of EgyptAir Flight 990";cap[7] = "Correspondent Brent Sadler reports on how family members of backup copilot Gameel el-Batouty are reacting to the probe of the EgyptAir crash";cap[8] = "State Department Correspondent Andrea Koppel looks at how the investigation into the EgyptAir crash is affecting diplomatic relations between the United States and Egypt";// -----var title = new Array(nOv);title[1] = "CNN Special coverage of Egyptair Flight 990 crash";title[2] = "CNN Special coverage of Egyptair Flight 990 crash";title[3] = "CNN Special coverage of Egyptair Flight 990 crash";title[4] = "CNN Special coverage of Egyptair Flight 990 crash";title[5] = "CNN Special coverage of Egyptair Flight 990 crash";title[6] = "CNN Special coverage of EgyptAir Flight 990 crash";title[7] = "Relatives of EgyptAir backup copilot react to crash probe";title[8] = "Diplomacy and the EgyptAir crash probe";// -----var Vurl = new Array(nOv);Vurl[1] = "/video/us/1999/11/16/egyptair.spcl.06";Vurl[2] = "/video/us/1999/11/16/egyptair.spcl.05";Vurl[3] = "/video/us/1999/11/16/egyptair.spcl.04";Vurl[4] = "/video/us/1999/11/16/egyptair.spcl.03";Vurl[5] = "/video/us/1999/11/16/egyptair.spcl.02";Vurl[6] = "/video/world/1999/11/16/egyptair.spcl.01";Vurl[7] = "/video/world/1999/11/18/bs.copilot.profile";Vurl[8] = "/video/us/1999/11/18/ak.egyptair.diplo";// -----// _____//	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;		}	}