function pngdisplay(image, width, height, cl, alt, onclk) 
{
	if(navigator.appName=='Microsoft Internet Explorer') 
	{ 
		document.write('<img src="images/empty.gif" style="width: ' + width + '; height: ' + height + '; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=' + image + ', sizingMethod=scale)" alt="' + alt + '" title="' + alt + '" class="' + cl + '" onclick="' + onclk + '">');
	} 
	else 
	{
		document.write('<img src="' + image + '" style="width: ' + width + '; height: ' + height + ';" alt="' + alt + '" title="' + alt + '" class="' + cl + '" onclick="' + onclk + '">');
	}
}
