
// ABRIR POPUP/////////////////////////////////////////////////////////////////////////////////////////////////
function popup(url,h1,w1,name,scroll){
	var w=w1;
	var h=h1;
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	var settings ='menubar=no,location=no,resizable=no,scrollbars='+scroll+',status=no,';
	settings +='height='+h+',';
	settings +='width='+w+','
	settings +='top='+wint+','
	settings +='left='+winl
	window.open(url,name,settings);
}
// ESCRIBE VERTICAL SOLO IE/////////////////////////////////////////////////////////////////////////////////////////////////
function escribe(msg)
{
cont =0;
     while (cont<msg.length)
     {
      letra = msg.substring(cont,cont+1)
      document.write(letra+"<br>")
      cont+=1
     }
}
// IMAGEN EN POPUP/////////////////////////////////////////////////////////////////////////////////////////////////
var ventana
var cont=0
var titulopordefecto = "T&L Advisors" //texto por defecto a mostrar en la barra de título en caso de omitir el argumento titulo

function afoto(cual,titulo){
	if(cont==1){
		ventana.close();
		ventana=null
	}
	if(titulo==null){
		titulo=titulopordefecto
	}
	ventana=window.open('','ventana','menubar=no,location=no,resizable=yes,scrollbars=no,status=no');
	ventana.document.write('<html><head><title>' + titulo + '</title></head><body style="overflow:hidden" marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" scroll="no" onUnload="opener.cont=0"><img src="' + cual + '" onLoad="opener.redimensionar(this.width, this.height)" onclick="window.close();">');
	ventana.document.close();
	cont++
}
function redimensionar(ancho,alto){
	ventana.resizeTo(ancho+12,alto+28)
	ventana.moveTo((screen.width-ancho)/2,(screen.height-alto)/2) //centra la ventana. Eliminar si no se quiere centrar el popup
}
// OCULTA LAS FICHAS DE EQUIPO/////////////////////////////////////////////////////////////////////////////////////////////////
function HiddeAll() {
			document.getElementById("Equipo1").style.display='none';
			document.getElementById("Equipo2").style.display='none';
			document.getElementById("Equipo3").style.display='none';
			document.getElementById("Equipo4").style.display='none';
			document.getElementById("Equipo5").style.display='none';
			document.getElementById("Equipo6").style.display='none';
			document.getElementById("Equipo7").style.display='none';
			document.getElementById("Equipo8").style.display='none';
		}