/*
 * Career and Franchse Area Scripts
 * ================================
 * Scripts that support the C21 Career and Franchise functions.
 *
 */
function EmbedCareerFranchiseVideo( iVideoNumber ) 
{
   //var strVideoId = 'extra' + iVideoNumber;
   var strVideoId = iVideoNumber;
   AC_FL_RunContent(
               'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0',
               'width', '320',
               'height', '190',            
               'quality', 'high',
               'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
               'align', 'middle',
               'play', 'true',
               'loop', 'true',
               'scale', 'noscale',
               'wmode', 'transparent',
               'devicefont', 'false',            
               'bgcolor', '#ffffff',
               'menu', 'false',
               'allowFullScreen', 'false',
               'allowScriptAccess','sameDomain',
               'salign', 'tl',
               'src', strVideoId,
               'id', strVideoId,
               'name', strVideoId,
               'movie', '/flash/careerfranchise/videoPlayer?preview='+escape('extras/'+iVideoNumber+'.jpg')+'&video=' + escape('extras/'+iVideoNumber+'.flv') 
               );
}

