addEvent(window,'load',function() {
   
   if(document.getElementById('confirmation')){
      new Effect.Parallel([
         new Effect.Morph('confirmation', { sync: true, style: {height: '0px'}}), 
         new Effect.Opacity('confirmation', { sync: true, from: 1, to: 0 }) 
       ], { 
         duration: 1,
         delay: 1,
         afterFinish: function(){
            $('confirmation').style.display = 'none';
         }
       });





//      Effect.Fade('confirmation',{delay: 1, direction: 'top', duration: 3});
   }
   
   if($('sorttable_default'))
   {
      //sortfwdind = document.createElement('span');
      //sortfwdind.id = "sorttable_sortfwdind";
      //sortfwdind.style.fontSize = "2em";
      //sortfwdind.innerHTML = stIsIE ? '&nbsp<font face="webdings">6</font>' : '&nbsp;&#x25BE;';
      //$('sorttable_default').appendChild(sortfwdind);
   }
});