function abrirVentana(URL,nombreVentana,opciones) { //v2.0
  window.open(URL,nombreVentana,opciones);
}

function abrePagina(URL) { //v2.0
  window.open(URL);
}

function abreSeccion(idSeccion) { //v2.0
	f = window.document.formularioPasar;
	f.action = "secciones.php";
	f.seccion.value = idSeccion;
	f.submit();
}

function abreDocumento(idDocumento) { //v2.0
	f = window.document.formularioPasar;
	f.action = "documentos.php";
	f.documento.value = idDocumento;
	f.submit();
}
function scroll_top(){

	if(window.pageYOffset){
		return window.pageYOffset;
	 }
	 else {
		return  Math.max(document.body.scrollTop,document.documentElement.scrollTop);
	 }

}


function recuperarClave(){
   var margenTop = -278 + scroll_top();
   document.getElementById("informacionEncuesta").style.display = 'none';		      
   document.getElementById("resultadoEncuesta").style.display = 'none';		      
   document.getElementById("recuperarClave").style.display = 'block';		      
   document.getElementById("capaPopup").style.display = 'block';		   
   document.getElementById("capaPopup").style.marginTop = margenTop+'px';
   document.getElementById("capaOculta").style.display = 'block';
   document.getElementById("capaOculta").style.top = scroll_top()+'px';	   	   
   document.getElementById("myBody").style.overflow = 'hidden';
	//window.frames["iframeRecuperarClave"].location.reload();     
   }
function masInformacionEncuesta(){
   var margenTop = -278 + scroll_top();
   document.getElementById("informacionEncuesta").style.display = 'block';		      
   document.getElementById("resultadoEncuesta").style.display = 'none';		      
   document.getElementById("recuperarClave").style.display = 'none';		      
   document.getElementById("capaPopup").style.display = 'block';		   
   document.getElementById("capaPopup").style.marginTop = margenTop+'px';
   document.getElementById("capaOculta").style.display = 'block';
   document.getElementById("capaOculta").style.top = scroll_top()+'px';	   	   
   document.getElementById("myBody").style.overflow = 'hidden';
   }
function verResultadosEncuesta(){
   var margenTop = -278 + scroll_top();
   document.getElementById("informacionEncuesta").style.display = 'none';		      
   document.getElementById("resultadoEncuesta").style.display = 'block';		      
   document.getElementById("recuperarClave").style.display = 'none';		      
   document.getElementById("capaPopup").style.display = 'block';		   
   document.getElementById("capaPopup").style.marginTop = margenTop+'px';	
   document.getElementById("capaOculta").style.display = 'block';
   document.getElementById("capaOculta").style.top = scroll_top()+'px';	   	   
   document.getElementById("myBody").style.overflow = 'hidden';
   window.frames["iframeResultadoEncuesta"].location.reload();   
   }   
function cerrar(){
   document.getElementById("capaOculta").style.display = 'none';
   document.getElementById("capaPopup").style.display = 'none';		   
   document.getElementById("informacionEncuesta").style.display = 'none';		      
   document.getElementById("resultadoEncuesta").style.display = 'none';		      
   document.getElementById("recuperarClave").style.display = 'none';		      
   document.getElementById("myBody").style.overflow = 'auto';	   
   }
function mostrarCargando(){
   var margenTop = -70 + scroll_top();
   document.getElementById("capaCargando").style.marginTop = margenTop+'px';
   document.getElementById("capaOculta").style.top = scroll_top()+'px';	   	
   document.getElementById("capaCargando").style.display = 'block';		   
   document.getElementById("capaOculta").style.display = 'block';
   document.getElementById("myBody").style.overflow = 'hidden';
   }   
function ocultarCargando(){
   document.getElementById("capaCargando").style.display = 'none';		   
   document.getElementById("capaOculta").style.display = 'none';
   document.getElementById("myBody").style.overflow = 'auto';
   }      
   
   
function cambiaImagen(ruta, nombre) {
    document.images[nombre].src = ruta;
	if (Right(location.href, 5) == "#foto")
		window.location.href=location.href;
	else
		window.location.href=location.href+"#foto";
} 

function cambiaTextoCapa(texto, nombre, textolargo, nombrelargo){
	document.getElementById(nombre).innerHTML = texto;
	document.getElementById(nombrelargo).innerHTML = textolargo;
}



function Left(s, n){
	// Devuelve los n primeros caracteres de la cadena
	if(n>s.length)
		n=s.length;
		
	return s.substring(0, n);
}
function Right(s, n){
	// Devuelve los n últimos caracteres de la cadena
	var t=s.length;
	if(n>t)
		n=t;
		
	return s.substring(t-n, t);
}
function Mid(s, n, c){
	// Devuelve una cadena desde la posición n, con c caracteres
	// Si c = 0 devolver toda la cadena desde la posición n
	
	var numargs=Mid.arguments.length;
	
	// Si sólo se pasan los dos primeros argumentos
	if(numargs<3)
		c=s.length-n+1;
		
	if(c<1)
		c=s.length-n+1;
	if(n+c >s.length)
		c=s.length-n+1;
	if(n>s.length)
		return "";
		
	return s.substring(n-1,n+c-1);
}
