//Para abrirPaginas
//----------------------------------------------------------------------------------------------------------------------------------------->

		function abrirPaginaVideos(theURL,winName,features) { 
		  window.open(theURL,winName,features);
		}

//----------------------------------------------------------------------------------------------------------------------------------------->

//Para actualizar iframe de pagina de donde se abrio
//----------------------------------------------------------------------------------------------------------------------------------------->

		function updateIframeVideos(elIframe, datoUrl) {

					window.document.getElementById(elIframe).src = datoUrl;
		
		}


//Back dependiendo de navegador
//----------------------------------------------------------------------------------------------------------------------------------------->

		function regresaVideos() {

							if((navigator.userAgent.indexOf("MSIE") != -1)) {


											history.back();
											history.back();
							

							} else {


											history.go(-2);


							}


		}

//----------------------------------------------------------------------------------------------------------------------------------------->

//Adelanta dependiendo de navegador
//----------------------------------------------------------------------------------------------------------------------------------------->

		function adelantaVideos() {

							if((navigator.userAgent.indexOf("MSIE") != -1)) {


											history.forward();
							

							} else {


											history.go(2);


							}


		}

//----------------------------------------------------------------------------------------------------------------------------------------->

//Muestra Descripcion
//----------------------------------------------------------------------------------------------------------------------------------------->

		function muestraInfoVideo(miCondicion, textoDescribe) {


				if(miCondicion == true) {
				
						window.parent.document.getElementById("laInfoVideo").innerHTML = textoDescribe;
						window.parent.document.getElementById("laInfoVideo").style.visibility = "visible";

				}


				if(miCondicion == false) {
				
						window.parent.document.getElementById("laInfoVideo").innerHTML = "";						
						window.parent.document.getElementById("laInfoVideo").style.visibility = "hidden";

				}





		}

//----------------------------------------------------------------------------------------------------------------------------------------->


