var activeNav = "";
var showTabRowDelay;
if(top.frames.length > 0 && self.name!="fileMngPreview"){top.location.href=self.location;}

function xOver(x,imageName)
{if(activeNav!=imageName){if(document.images){document[imageName].src = eval(x+"Over.src");}}}
function xOut(x,imageName)
{if(activeNav!=imageName){if(document.images){document[imageName].src = eval(x+"Out.src");}}}
function xClick(x,imageName)
{if(activeNav!=imageName){if(document.images){document[imageName].src = eval(x+"Click.src");}}}

function topInfo(cont,target,w,h)
{var topInf = window.open(cont,target,'width='+w+',height='+h+',dependent=yes,resizable=yes,scrollbars=yes,menubar=yes,status=yes'); topInf.focus(); return false;}

function hideTabRowShowDiv(){clearTimeout(showTabRowDelay);
document.getElementById("tabRowShowDiv").style.visibility = "hidden";}

function uncoverShowDiv(){if(document.all){}
else{document.getElementById("tabRowShowDiv").style.visibility = "visible";}}

function showTabRow(xy){ clearTimeout(showTabRowDelay);
var sD = document.getElementById("tabRowShowDiv");
var sDf = sD.firstChild;
var xNode = xy.firstChild;
var x = 0; 
var p = 20;
if(document.all){p = p + document.body.scrollTop;}
else if(document.getElementById){p = p + window.pageYOffset;}
if(p<80) p = 80;
while (sDf!=null){
   sD.removeChild(sDf);
   sDf = sD.firstChild;}
while (xNode!=null){
   if(xNode.nodeType==1 && xNode.childNodes[0].nodeValue!=null){x+=1; 
      var newEntry = document.createTextNode(x + ": " + xNode.childNodes[0].nodeValue);
      var newBr = document.createElement("br");
      sD.appendChild(newEntry);
      sD.appendChild(newBr); }
   xNode = xNode.nextSibling; }
sD.style.top = p;
showTabRowDelay = setTimeout("uncoverShowDiv()",1000);}