/* -- count images before display -- modified 14 July 2011 ----- */

// count images 
// display page after loading header images
var loadCount=0         //global
//
// ======= count images =======
//
// display page after loading header images
function countImg()
  {  ++loadCount; 
        // alert(loadCount+" "+A.length+" "+(loadCount>=A.length))
        // return
      if(loadCount>=A.length)                   //setLength is on calling page
          { setTimeout("chkBody()",50) };         // checks for doc.body
  }
// --------
// checks for doc.body
 function chkBody()  
    { if(document.body) 
        {   document.getElementById("bdr_bdy").style.display="block"
           return;
        } 
    setTimeout("chkBody()",50); 
    }
//
// ------------------
// safety display on page load 
 function disp()
  { document.getElementById("bdr_bdy").style.display="block"
  // post load large images   
  }
//
// ------------------
// alt-title settings
 function altTitle()
  { for(var i=0;i<document.images.length;i++) 
     {document.images[i].title=""; } 
  }
// ---------------------------------------
