var nOv = 14;// _____var cap = new Array(nOv);cap[1] = "In Bangkok, Thailand, fireworks greeted the new year.";cap[2] = "Watch the countdown and dancing in Beijing at midnight.";cap[3] = "A large celebration brought in 2000 in Hong Kong.";cap[4] = "Sydney, Australia's harbor explodes into lights at the clock hits midnight.";cap[5] = "Auckland, New Zealand, welcomed 2000 with fireworks.";cap[6] = "New Zealand's Chatham Islands-- the world's first inhabited land west of the international date line-- bring in the year 2000.";cap[7] = "Watch the first moments of 2000 from the nation of Kiribati at the edge of the International Date Line.";cap[8] = "CNN's Satinder Bindra describes India's joyous millennium festivities.";cap[9] = "The Russian capital marks the millennium with a barrage of pyrotechnics.";cap[10] = "An eruption of light and noise greets the new year in the biblical city of Jesus' birth.";cap[11] = "Fireworks and lights illuminate the ancient structures in Giza.";cap[12] = "Former President Nelson Mandela marks the millennium.";cap[13] = "Berlin enters the new millennium in a blaze of fireworks.";cap[14] = "Sonia Ruseler reports on the human rights demonstration that took place as Buenos Aires was entering the new year.";// -----var title = new Array(nOv);title[1] = "Thailand welcomes the new year with fireworks";title[2] = "A new year for China";title[3] = "Hong Kong party brings in new year";title[4] = "Australia greets Year 2000 with light and sound";title[5] = "Midnight fireworks brighten Auckland sky for Year 2000";title[6] = "First inhabited land greets 2000";title[7] = "Kiribati sees first moments of 2000";title[8] = "Year 2000 comes to New Delhi, India";title[9] = "Year 2000 arrives in Moscow amid fireworks in Red Square";title[10] = "Fireworks rock Manger Square in Bethlehem";title[11] = "Dusk-to-dawn celebration rings in the new year at Egypt's pyramids";title[12] = "South Africa honors the past while ushering in the new year";title[13] = "Germany ushers in the new year";title[14] = "Human rights demonstration ushers in new year in Buenos Aires";// -----var Vurl = new Array(nOv);Vurl[1] = "/video/world/1999/12/31/bangkok.midnight";Vurl[2] = "/video/world/1999/12/31/beijing.midnight";Vurl[3] = "/video/world/1999/12/31/hongkong.midnight.reut";Vurl[4] = "/video/world/1999/12/31/sydney.midnight.reut";Vurl[5] = "/video/world/1999/12/31/Auckland.fireworks.reut";Vurl[6] = "/video/world/1999/12/31/chatham.midnight.reut";Vurl[7] = "/video/world/1999/12/31/kiribati.midnight.ap";Vurl[8] = "/video/world/1999/12/31/new.delhi.new.yr";Vurl[9] = "/video/world/1999/12/31/moscow.new.year";Vurl[10] = "/video/world/1999/12/31/bethlehem.new.yr";Vurl[11] = "/video/world/1999/12/31/pyramids.new.year";Vurl[12] = "/video/world/1999/12/31/s.africa.new.year";Vurl[13] = "/video/world/1999/12/31/berlin.new.year.ap";Vurl[14] = "/video/world/1999/12/31/argentin.midnight";// -----// _____//	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;		}	}