/*  INTERAÇÃO FLASH E JAVASCRIPT  */

function flash(strFlash, w, h){ 
	AC_FL_RunContent(
		'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0',
		'width', w,
		'height', h,
		'src', 'swf/'+strFlash,
		'quality', 'high',
		'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
		'play', 'true',
		'loop', 'true',
		'scale', 'noscale',
		'wmode', 'transparent',
		'devicefont', 'false',
		'id', strFlash,
		'name', strFlash,
		'menu', 'true',
		'movie', 'swf/'+strFlash,
		'allowScriptAccess','always',
		'allowFullScreen','true',
		'swliveconnect', 'true'/*,
		'salign', 't'*/
	); 
}

