/** 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)
* @return void
*/
function createSlideshow(width, height, dirPath, bgcolor, debugMode, playMode)
{
	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 ); //end AC code
}