function fixpng(A){if(/MSIE (5\.5|6).+Win/.test(navigator.userAgent)){var B;if(A.tagName=="IMG"){if(A.src&&A.src.match(/\.png/i)&&A.style.filter==""){B=A.src;A.width=A.width;A.height=A.height;A.src=clear}}else{B=A.currentStyle.backgroundImage.match(/url\("(.+\.png)"\)/i);if(B){B=B[1];A.runtimeStyle.backgroundImage="none"}}if(B){A.runtimeStyle.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+B+"',sizingMethod='crop')"}}};
