//  Autor: Juarez Rosa da Silva
//  Site: www.ibvn.org.br
//  Data: 22/07/2001
//  Script para mostrar referências bíblicas
// início

var Ie=document.all?true:false;
var Ns=document.layers?true:false;
var Dom=!Ie&&document.getElementById?true:false;
var X,Y,M=0;

if(Ns) document.captureEvents(Event.mousedown);
document.onmousedown=Cap;

function Inicia(Texto,Tipo){

  if(!Ns && !Ie && !Dom) return;

  if(Ie) Xdiv=eval('document.all.Tela1.style')
  else if (Ns) Xdiv=eval('document.layers["Tela1"]')
  else if(Dom) Xdiv=eval('document.getElementById("Tela1").style');

  Xdiv.display="";

  if (Ie) Xdiv.visibility="visible"
  else if (Ns) Xdiv.visibility ="show"
  else if (Dom) Xdiv.visibility = "visible";

  Mostra(Texto,Tipo);
}

function Mostra(Msg,Tipo){
var Larg; //=(Ns)?window.innerWidth:document.body.offsetWidth;
var Tela; //=(Ns)?document.Tela1:Tela1.style;

if (Ie) {Larg=document.body.offsetWidth;
         Tela=Tela1.style;}
else if(Ns) {Larg=window.innerWidth;
             Tela=document.Tela1;}
else if(Dom){Larg=window.innerWidth;
             Tela=document.getElementById("Tela1").style;};


Larg=Larg-40;

var Tabela = "";

if(Tipo == 1) {
  Tabela="<table border=1 bordercolor='red' cellspacing=0 cellpadding=10 width="+Larg+" bgcolor='#F5FAFF'><td><font color='red';font face='Arial,Tahoma,Verdana';font size='2';>"+Msg+"</font></td></table>";
}

if(Tipo == 2) {
  Tabela="<table border=1 bordercolor='#DAA520' cellspacing=0 cellpadding=10 width="+Larg+" bgcolor='#FFFF99'><td><font color='black';font face='Arial,Tahoma,Verdana';font size='2'><em>"+Msg+"</font></em></td></table>";
}

if(Tipo == 3) {
  Larg=Larg-300;
  Tabela="<table border=1 bordercolor='black' cellspacing=0 cellpadding=10 width="+Larg+" bgcolor='#FFFF99'><td><font color='black'>"+Msg+"</font></td></table>";
}

if(Tipo == 4) {
  Larg=Larg-300;
  Tabela="<table border=1 bordercolor='black' cellspacing=0 cellpadding=10 width="+Larg+" bgcolor='#FFFF99'><td><font color='black'>"+Msg+"</font></td></table>";
}

if (Ie){
 Wobjeto  =document.body.scrollLeft;
 Hobjeto =document.body.scrollTop;
  document.all("Tela1").innerHTML=Tabela;}
else
  if (Ns){
    Wobjeto=window.pageXOffset;
    Hobjeto=window.pageYOffset;
    Tela.document.write(Tabela);Tela.document.close();Tela.visibility="visible";}
else if (Dom){
    Wobjeto=window.pageXOffset;
    Hobjeto=window.pageYOffset;

document.getElementById("Tela1").innerHTML=Tabela;

};


Xdiv.left=Wobjeto+10;
Xdiv.top =Hobjeto+10;
M=1;
}

function Fecha(){
if (Ie) Xdiv.display="none"
else if (Ns)
  Xdiv.visibility ="hide"
else if(Dom) Xdiv.visibility = "hidden";

}

function Cap(e){
X=(Ns||Dom)?e.pageX:event.x;
Y=(Ns||Dom)?e.pageY:event.y;
if (M) Fecha();
}

function Abre(URL,Tip,Wx,Hx,Scb,Sta,Men,Tit,Tol){
var Tela=null;var Str="width="+Wx+",height="+Hx+",scrollbars="+Scb+",status="+Sta+",menubar="+Men+",titlebar="+Tit+"toolbar="+Tol;Tela=window.open("",Tip,Str);Tela.moveTo(0,0);if(Tela!=null){if(Tela.opener==null){Tela.opener=self;}Tela.location.href=URL;}
}

function Abre1(URL,Tip,Wx,Hx,Scb,Sta,Men,Res,Tit,Tol){
var Tela=null;var Str="width="+Wx+",height="+Hx+",scrollbars="+Scb+",status="+Sta+",menubar="+Men+",resizable="+Res+",titlebar="+Tit+"toolbar="+Tol;Tela=window.open("",Tip,Str);Tela.moveTo(0,0);if(Tela!=null){if(Tela.opener==null){Tela.opener=self;}Tela.location.href=URL;}
}

function XAbre(URL,Tip,Wx,Hx,Adb,Scb,Sta,Men,Tit,Tol){
var Tela=null;var Str="width="+Wx+",height="+Hx+",location="+Adb+",scrollbars="+Scb+",status="+Sta+",menubar="+Men+",titlebar="+Tit+"toolbar="+Tol;Tela=window.open("",Tip,Str);Tela.moveTo(0,0);if(Tela!=null){if(Tela.opener==null){Tela.opener=self;}Tela.location.href=URL;}
}
// fim.
