function loadPNG(id,img){
	var obj = document.getElementById(id);
	if(typeof(document.all) != "undefined"){
			document.write("<IMG WIDTH=1 STYLE='FILTER: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="+img+");'>");
	}else{
			document.write("<IMG SRC='"+img+"' ID='"+id+"' ALT='"+id+"'>");
	}
}

