/*

This file will write the flash using the AC_FL_RunContent. The
way things are set up, it will write the swf to be full browser.
To change that, you can change the width and height settings from
100% to the values you desire.

*/


// the name of the swf file, minus the .swf part
var swfName = "Main"


AC_FL_RunContent
( 
	'codebase','http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,45,0',
	'width','100%',
	'height','100%',
	'id',swfName,
	'align','middle',
	'src',swfName+'.swf',
	'quality','high',
	'bgcolor','#000000',
	'name',swfName,
	'allowscriptaccess','always',
	'wmode','transparent',
	'allowFullScreen','true',
	'pluginspage','http://www.macromedia.com/go/getflashplayer',
	'movie',swfName
);
