//------------------------------------------------------------------------------
//FIX OPERA & IE : getElementById
//------------------------------------------------------------------------------
var isOpera,isIE=false;
if(typeof(window.opera)!='undefined'){isOpera=true;}
if(!isOpera && navigator.userAgent.indexOf('Internet Explorer')){isIE=true;}
if(isOpera || isIE)
{
 document.nativeGetElementById=document.getElementById;
 document.getElementById=function(id)
 {
  var elem=document.nativeGetElementById(id);
  if(elem)
  {
   if(elem.attributes['id'] && elem.attributes['id'].value==id){return elem;}
   else
   {
    for(var i=1;i<document.all[id].length;i++)
    {
     if(document.all[id][i].attributes['id'] && document.all[id][i].attributes['id'].value==id){return document.all[id][i];}
    }
   }
  }
  return null;
 };
}
//------------------------------------------------------------------------------