//PNG
function pngdisplay(image, width, height, iclass) {
	if (navigator.appName=='Microsoft Internet Explorer') { 
		document.write('<img src="/images/i.gif" style="width: ' + width + '; height: ' + height + '; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=' + image + ', sizingMethod=scale)" class="' + iclass + '" border=0 />');
	} else {
		document.write('<img src="' + image + '" style="width: ' + width + '; height: ' + height + ';" class="' + iclass + '" />');
	}
}
