
function png(img, stl)
{
	if (navigator.userAgent.indexOf("MSIE 5")>=0 ||
 	   navigator.userAgent.indexOf("MSIE 6")>=0)
	{
		document.write("<div style=\"width:1px; height:1px; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+img+"'); "+stl+"\"></div> ");
	}
	else
	{
		document.write("<img border=0 src='"+img+"' style='"+stl+"'>");
	}
}
