function MakeLayer() {
    if (document.layers) { // check to make sure it's netscape 4.x
       var ILayer1 = new Layer(173)
       ILayer1.top=document.images['LeftTable'].y-1
       ILayer1.left=document.images['BottomImage'].x
       ILayer1.clip.height=document.images['BottomImage'].y-ILayer1.top
       ILayer1.background='http://www.twinlights.org/NewSafeWork/_borders/LeftBannerBottom.gif'
       ILayer1.visibility="show"
       ILayer1.zindex=-1
 		ILayer1.document.open();
       ILayer1.document.write('<html><body><table border="0" cellpadding="0" cellspacing="0" height="')
       ILayer1.document.write(ILayer1.clip.height)
       ILayer1.document.write('" width="173" background="/NewSafeWork/_borders/LeftBannerBottom.gif"><tr><td>&nbsp</td></tr></table></body></html>')
       ILayer1.document.close()
   }
   if (document.getElementById && navigator.appName == 'Netscape') { // Navigator >=6
       TopImg = document.getElementById('LeftTable');
       BottomImg = document.getElementById('BottomImage');
       var layer = document.createElement('DIV');
       layer.style.position = 'absolute';
       layer.style.left = TopImg.offsetLeft;
       layer.style.top = TopImg.offsetTop;
       layer.style.width = '173px';
       layer.style.height = '' + BottomImg.offsetTop-TopImg.offsetTop + 'px';
       layer.style.backgroundImage = 'http://twinlights.org/NewSafeWork/_borders/LeftBannerBottom.gif';
       html = '<html><body><table border="0" cellpadding="0" cellspacing="0" height="';
       html += layer.style.height;
       html += '" width="173" background="http://twinlights.org/NewSafeWork/_borders/LeftBannerBottom.gif"';
       html += '<tr><td>&nbsp</td></tr></table></body></html>'
       var range = document.createRange();
       range.setStartAfter(layer.body.lastChild);
       alert('here now')
       var docFrag = range.createContextualFragment(html);
       layer.appendChild(docFrag);
       document.body.appendChild(layer);

   }
}
window.onload=MakeLayer;

