   var ldng=new Image();
   ldng.src='../img/load.gif';
   
function CalcDim(){
   pHgt=document.all?document.body.clientHeight:innerHeight;
   pWdt=document.all?document.body.clientWidth:innerWidth;
   yScr=document.all?document.body.scrollTop:pageYOffset;
   xScr=document.all?document.body.scrollLeft:pageXOffset;
}

function ShowFoto(pic){
   fotodiv.innerHTML='<img align="top" src="'+ldng.src+'">&nbsp;&nbsp;<b>L O A D I N G . . .</b>&nbsp;';
   CalcDim();
   fotodiv.style.top=pHgt/2-25+yScr+'px';
   fotodiv.style.left=pWdt/2-80+xScr+'px';
   fotodiv.style.display='block';
   var fot=new Image();
   fot.onload=function() { CalcPos(pic,this.width,this.height); };
   fot.src=(pic);
}

function CalcPos(pic,picw,pich){
   fotodiv.innerHTML='<img src="'+pic+'" style="border: 1px solid #808080;" alt="" onclick="CloseFoto()"><br><br><b>&bull; Bastet-a-tet &bull;</b>';
   yPad=pHgt/2-pich/2+yScr-25;
   xPad=pWdt/2-picw/2+xScr-10;
   fotodiv.style.top=yPad+'px';
   fotodiv.style.left=xPad+'px';
}

function CloseFoto(){
   fotodiv.innerHTML='';
   fotodiv.style.display='none';
}

function Hlt(oBj){
   oBj.style.borderColor='#A8BDE9';
   oBj.style.cursor='pointer';
}

function deHlt(oBj){
   oBj.style.borderColor='#5885D9';
}
