// JavaScript Document
function addLoadEvent(func)
{
   var oldonload = window.onload;
   if(typeof window.onload != 'function')
   {
      window.onload = func;
   }
   else
   {
      window.onload = function()
      {
         oldonload();
         func();
      }
   }
}

function chargement() {
		if (document.getElementById("baspage")) {
			document.getElementById("baspage").style.position='absolute';
			document.getElementById("baspage").style.top=document.body.parentNode.scrollHeight + 'px';
			document.getElementById("baspage").style.visibility='visible';
		}
 }
 
 addLoadEvent(chargement)
