/** createSlideshow
* @param width 
* @param height
* @param dirPath : path to the folder containing the sources
* @param bgcolor : backgroundColor (ex: if you want white type => '#FFFFFF')
* @param debugMode : if you wanna see some informations type 'on'
* @param playMode : 'loop' or 'noLoop' (everything else will be understood as loop mode)
* @param loadingBarType : bar1, bar2, bar3
* @param urlBar1 : String
* @param urlBar2 : String
* @param urlGif : String
* @param urlImage : String
* @return void
*/
function createSlideshow(width, height, dirPath, bgcolor, debugMode, playMode, loadingBarType, urlBar1, urlBar2, urlGif, urlImage)
{
	AC_FL_RunContent( 'bgcolor', bgcolor,'width',width,'height',height,'title','Animation Demo','src', dirPath+'/slideshow','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie',dirPath+'/slideshow','FlashVars', 'dirPath='+dirPath+'&debugMode='+debugMode+'&playMode='+playMode +'&loadingBarType='+loadingBarType+'&urlBar1='+urlBar1+'&urlBar2='+urlBar2+'&urlGif='+urlGif+'&urlImage='+urlImage); //end AC code
}