var isIE=/msie/i.test(navigator.userAgent);

function fixPNG(oImg){
	if (!isIE) return;
	var LW=oImg.width
	var LH=oImg.height
	var imgName = oImg.src.toUpperCase()
	if (imgName.substring(imgName.length-3, imgName.length) == "PNG"){ 
		oImg.style.filter+="progid:DXImageTransform.Microsoft.AlphaImageLoader(src="+oImg.src+", sizingmethod=scale);" 
		oImg.src="http://www.android123.com/vck/data/transparent.gif"
		oImg.width=LW
		oImg.height=LH
	}
}

