function IEPngFix( img , width , height , unique_name ) {

var code = '<IMG SRC="'+ img +'" WIDTH="' + width + '" HEIGHT="' + height + '" BORDER=0 name='+ unique_name +'>';
if( navigator.userAgent.indexOf("Opera") > 1 )
document.write(code);
else
if( navigator.userAgent.indexOf("MSIE 6") > 1 )
document.write('<IMG SRC="images/blank.gif" WIDTH="' + width + '" HEIGHT="' + height + '" BORDER="0" ALT="" STYLE="filter: progid:DXImageTransform.Microsoft.AlphaImageLoader (src=' + img + ' , sizingMethod=scale );">');
else
if(navigator.userAgent.indexOf("MSIE 5") != -1)
document.write(code);
else
document.write(code);

}
