// version 9.0.115 or greater is required for launching AIR apps.
var so = new SWFObject("http://marbleapp.com/media/swf/AIRInstallBadge.swf", "Badge", "215", "180", "9.0.115", "#FFFFFF");
so.useExpressInstall('http://marbleapp.com/media/swf/expressinstall.swf');

// these parameters are required for badge install:
so.addVariable("airversion", "1.5"); // version of AIR runtime required
so.addVariable("appname", "Marble"); // application name to display to the user
so.addVariable("appurl", "http://marbleapp.com/media/Marble.air"); // absolute URL (beginning with http or https) of the application ".air" file

// these parameters are required to support launching apps from the badge (but optional for install):
so.addVariable("appid", "com.marici.marble"); // the qualified application ID (ex. com.gskinner.air.MyApplication)
so.addVariable("pubid", "com.marici"); // publisher id

// this parameter is required in addition to the above to support upgrading from the badge:
so.addVariable("appversion", "Beta 11"); // AIR application version

// these parameters are optional:
so.addVariable("image", "http://marbleapp.com/media/version/.jpg"); // URL for an image (JPG, PNG, GIF) or SWF to display in the badge (205px wide, 170px high)
so.addVariable("appinstallarg", "installkey=1e105cab-0be2-4f3f-8018-6e492ef243b7"); // passed to the application when it is installed from the badge
so.addVariable("applauncharg", "launchkey=1e105cab-0be2-4f3f-8018-6e492ef243b7"); // passed to the application when it is launched from the badge
so.addVariable("helpurl", "help.html"); // optional url to a page containing additional help, displayed in the badge's help screen
so.addVariable("hidehelp", "false"); // hides the help icon if "true"
so.addVariable("skiptransition", "false"); // skips the initial transition if "true"
so.addVariable("titlecolor", "#00AAFF"); // changes the color of titles
so.addVariable("buttonlabelcolor", "#00AAFF"); // changes the color of the button label
so.addVariable("appnamecolor", "#00AAFF"); // changes the color of the application name if the image is not specified or loaded

// these parameters allow you to override the default text in the badge:
// supported strings: str_error, str_err_params, str_err_airunavailable, str_err_airswf, str_loading, str_install, str_launch, str_upgrade, str_close,
// str_launching, str_launchingtext, str_installing, str_installingtext, str_tryagain, str_beta3, str_beta3text, str_help, str_helptext
so.addVariable("str_err_airswf", "<u>Running locally?</u><br/><br/>The AIR proxy swf won't load properly when this demo is run from the local file system."); // overrides the error text when the AIR proxy swf fails to load

so.write("div_install");

