// MS alpha filter hack for PNG transparency in IE5/6 on Win32
function pngTransparencyWorkaround(strId, strPath, intHeight, intWidth, strClass) {
	if ((browser.isIE55 || browser.isIE6x) && browser.isWin32)
	{
		document.write('<div style="height:'+intHeight+'px; width:' + intWidth + 'px; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'' + strPath + '\', sizingMethod=\'scale\')" id="' + strId + '" class="' + strClass + '"></div>');
	}
	else
	{
		document.write('<img src="' + strPath + '" id="' + strId + '" alt="" />');
	}
}
