﻿function runFlash(xmlFilename) 
{
    if (AC_FL_RunContent == 0) {
        alert("This page requires AC_RunActiveContent.js.");
    }
    else {
        AC_FL_RunContent(
						        'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
						        'width', '630',
						        'height', '80',
						        'src', 'usp_top?xmlFile=' + xmlFilename,
						        'quality', 'high',
						        'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
						        'align', 'middle',
						        'play', 'true',
						        'loop', 'true',
						        'scale', 'showall',
						        'wmode', 'transparent',
						        'devicefont', 'false',
						        'id', 'usp_top',
						        'bgcolor', '#ffffff',
						        'name', 'usp_top',
						        'menu', 'true',
						        'allowFullScreen', 'false',
						        'allowScriptAccess', 'sameDomain',
						        'movie', '/media/usp_top?xmlFile=' + xmlFilename,
						        'salign', ''
						        ); //end AC code
    }
}