function pngImage(tmp,tmpClass,tmpSizing){
	if ((navigator.appName.match(/Micro/))&&(navigator.platform.match(/Win32/))) {
		if(tmpSizing.match("image")){
			width="width:1px;";
		} else {
			width="";
		}
		document.write("<DIV ID='myDiv' class="+tmpClass+" STYLE='"+width+"filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\""+tmp+"\",sizingMethod=\""+tmpSizing+"\");'></DIV>");
	} else {
		document.write("<IMG src='"+tmp+"' class="+tmpClass+">");
	}
}
