function demoInstanceInfo(myPlayer, myInfo) {
	var jPlayerInfo = "<p>This MP3 is running in your browser using ";
	if(myPlayer.jPlayerGetInfo("html5")) {
		jPlayerInfo += "<strong>HTML5</strong> with ";
		if(myPlayer.jPlayerGetInfo("canPlayOGG")) {
			jPlayerInfo += "<strong>OGG</strong>";
		} else {
			jPlayerInfo += "<strong>MP3</strong>";
		}
	} else {
		jPlayerInfo += "<strong>Flash</strong> with <strong>MP3</strong>";
	}
	jPlayerInfo += " files";
	jPlayerInfo += "</p>";
	myInfo.html(jPlayerInfo);
}
