var nOv = 0;// _____var cap = new Array(nOv);// -----var title = new Array(nOv);// -----var Vurl = new Array(nOv);// -----// _____//								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 = a + 1;		 swapImg(a);			 } else {		 a = 1;		 swapImg(a);		 }	}function back() {	if ((a >> 1) && (a <= nOv)) {		a = a - 1;		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;		}	}