Global = {
  FixPng: function( img ){
    if(document.all){
      img.parentNode.style.width = img.offsetWidth;
      img.parentNode.style.height = img.offsetHeight;
      img.parentNode.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale src='"+ img.src +"')"
    } else {
      img.style.visibility = "visible"
    }
  }
}
