// jrc010-portada.js - Copyright (C) 2008-2009 by Juan Rodríguez [Consultor] & Begues Internet, s.l.

function Resize() {window.location.reload()}
window.onresize=Resize;

PosDer=-335; PosIzq=-150; Salto=1;

function Portada() { 
if (self.innerHeight) {ancho=self.innerWidth; alto=self.innerHeight }
else if (document.documentElement && document.documentElement.clientHeight) {ancho=document.documentElement.clientWidth; alto=document.documentElement.clientHeight }
else if (document.body) {ancho=document.body.clientWidth; alto=document.body.clientHeight }
RefHor= parseInt( (ancho -300) / 2 );
RefVer= parseInt( (alto -500 ) / 2 );
StopIzq= RefHor -175 -30;
if (alto <600) {SepPie= 20} else SepPie=20;
CuerpoCentral() } 

function CuerpoCentral() {
document.getElementById("Tarjeta").style.left=RefHor+"px"; document.getElementById("Tarjeta").style.top=RefVer+"px"; document.getElementById("Tarjeta").style.visibility="visible";
document.getElementById("Derecha").style.left=(RefHor +300 +25) +"px";
document.getElementById("Izquierda").style.top=RefVer +"px";
VerLaterales() }

function VerLaterales() {document.getElementById("Derecha").style.textAlign="left"; document.getElementById("Izquierda").style.textAlign="right"; MoverLaterales() }

function MoverLaterales() {
if (PosIzq < (StopIzq-5)) {Salto=10} else Salto=1;
if (PosIzq < StopIzq) {PosIzq+=Salto; document.getElementById("Izquierda").style.left=PosIzq+"px" }; 
if (PosDer < RefVer) {PosDer+=Salto; document.getElementById("Derecha").style.top=PosDer+"px"; setTimeout("MoverLaterales()",10);}
else {posder = document.getElementById("Derecha").style.left; VerPie()} }

function VerPie() {
document.getElementById("Pie").style.left=StopIzq+"px"; document.getElementById("Pie").style.top=(alto-SepPie-30) +"px"; document.getElementById("Pie").style.visibility="visible"; 
// document.getElementById("PrePie").style.left=StopIzq+"px"; 
// document.getElementById("PrePie").style.top=(alto-SepPie-30) +"px";
// document.getElementById("PrePie").style.visibility="visible"
}

// SACAR TEXTOS ONMOUSEOVER
OpcAnt=-1;

function VerOpc(num) {
if (OpcAnt == num) {return};
document.getElementById("Tarjeta").style.visibility="hidden";
if (OpcAnt >= 0) {document.getElementById("opc"+OpcAnt).style.visibility="hidden" }
document.getElementById("LogoDer").style.left=RefHor +300 +10 +2 +"px"; 
document.getElementById("LogoDer").style.top=RefVer+5+"px"; 
document.getElementById("LogoDer").style.visibility="visible";
OpcAct=num; OpcAnt=OpcAct; 
document.getElementById("opc"+OpcAct).style.left=RefHor+"px"; document.getElementById("opc"+OpcAct).style.top=RefVer+"px"; document.getElementById("opc"+OpcAct).style.visibility="visible";
document.getElementById("Derecha").style.textAlign="right"; document.getElementById("Izquierda").style.textAlign="left";
color=45; CamCol=5; MostrarTexto() }

function MostrarTexto() {if (color < 210) {color=color+CamCol; document.getElementById("opc"+OpcAct).style.color="rgb("+color+","+color+","+color+")"; setTimeout("MostrarTexto()",100)} }  

function OcultarOpcion(OpcAct) {
document.getElementById("LogoDer").style.visibility="hidden";
document.getElementById("opc"+OpcAct).style.visibility="hidden";
document.getElementById("Tarjeta").style.visibility="visible";
document.getElementById("Derecha").style.textAlign="left"; document.getElementById("Izquierda").style.textAlign="right"; OpcAnt=-1 }

