window.onload= function () {

  //Borra lo de que esta página requiere JavaScript
  var contenedor= document.getElementById("contenedor");
  var chivatoJS= document.getElementById("chivatoJS");
  if (chivatoJS) {
    chivatoJS.parentNode.removeChild(chivatoJS);
  }
  
  var isIE= false /*@cc_on || true @*/;
  var isIE6= isIE /*@cc_on && !!(!window.XMLHttpRequest && document.compatMode) @*/;
  if (isIE6) {
    document.getElementById("titulo").style.width= contenedor.style.width= "640px";
  }

  fixPNGs();
};
