function rectif()
{
for(var i=0; i<document.images.length; i++)
{
var img = document.images[i]
var imgName = img.src.toUpperCase()
if (imgName.substring(imgName.length-3, imgName.length) == "PNG")
{
var imgSC = (img.src) ? "src='" + img.src + "' " : ""
var imgAL = (img.alt) ? "alt='" + img.alt + "' " : ""
var imgID = (img.id) ? "id='" + img.id + "' " : ""
var imgClass = (img.className) ? "class='" + img.className + "' " : ""
var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' "
var imgStyle = "display:inline-block;" + img.style.cssText 
if (img.align == "left")
imgStyle = "float:left;" + imgStyle
if (img.align == "right")
imgStyle = "float:right;" + imgStyle
if (img.parentElement.href)
imgStyle = "cursor:hand;" + imgStyle
var str = "stroked=t"
//if (!img.border)
str = "stroked=f"
var a = "<v:image " + str + " strokeweight=" + img.border*75/100 + "pt "
var b = "/>"
var pngimag= imgID + imgSC + imgClass + "style='" + "width:" + img.width + "px;height:" + img.height + "px'" + imgAL + imgTitle  + imgStyle
img.outerHTML = a + pngimag + b
i = i-1
}}}
window.attachEvent("onload",rectif)


