Ver Mensaje Individual
  #14 (permalink)  
Antiguo 18/01/2002, 19:25
concepto
 
Fecha de Ingreso: diciembre-2001
Mensajes: 38
Antigüedad: 22 años, 4 meses
Puntos: 0
Re: ayudenme , quien tiene este menu o su codigo


function restore()
{
var oldMaxHeight=maxHeight;
setMaxHeight();
if(maxHeight!=oldMaxHeight)
{
var tot=this.menu.name+"Tot";
if(nav.isIE)
{
eval(tot).style.height=maxHeight+2*tabHeight;
eval(tot).style.clip='rect(0px '+itemWidth+'px '+(maxHeight+2*tabHeight)+'px 0px)';
}
else if(nav.isNN)
{
tot="document."+this.menu.name+"Tot ";
eval(tot).height=maxHeight+2*tabHeight;
eval(tot).clip.height=maxHeight+2*tabHeight;
}
this.menu.tabs.newHeight(this.menu.tabs.height);
}
if(nav.isNN)
{
var va=eval("parent."+linkTarget);
if(va!=undefined)
va.reload=false;
history.go(0);
}
}

var activeWindowLocale;
function setActiveWindowLocale(l)
{
if(activeWindowLocale!=undefined && l!=activeWindowLocale)
eval("parent."+pathTarget+".history .go(0);");
}

function entrarMenu(obj)
{
if (!obj.contains(event.fromElement))
obj.style.cursor = "hand";
//Rojo
obj.style.color="#CC0000"

//Azul Claro
//obj.style.color="#C6DFEC"

//Azul Oscuro
//obj.style.color="#013F71"
}

function salirMenu(obj)
{
if (!obj.contains(event.toElement))
obj.style.cursor = "default";
obj.style.color="#000000"
}
//-->