// JavaScript Document
				function addVideo(exitBtn, flvPlayer, openBtn, lightBox, width, height,filePath){
			    $(exitBtn).click(function () {
      				$('#'+flvPlayer).remove();
    			});

				$(openBtn).click(function () {
      				$(lightBox).prepend('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+width+'" height="'+height+'" id="'+flvPlayer+'"><param name="movie" value="http://www.strategyskills.com/FLVPlayer_Progressive.swf" /><param name="quality" value="high" /><param name="wmode" value="opaque" /><param name="scale" value="noscale" /><param name="salign" value="lt" /><param name="FlashVars" value="&amp;MM_ComponentVersion=1&amp;skinName=http://www.strategyskills.com/Halo_Skin_3&amp;streamName='+filePath+'&amp;autoPlay=true&amp;autoRewind=false" /><embed src="http://www.strategyskills.com/FLVPlayer_Progressive.swf" flashvars="&MM_ComponentVersion=1&skinName=http://www.strategyskills.com/Halo_Skin_3&streamName='+filePath+'&autoPlay=true&autoRewind=false" quality="high" wmode="opaque" scale="noscale" width="'+width+'" height="'+height+'" name="'+flvPlayer+'" salign="lt" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"></embed></object>');
    			});
				};
				
				function addAudio(exitBtn, flvPlayer, openBtn, lightBox, xmlFile){
			    $(exitBtn).click(function () {
      				$('#'+flvPlayer).remove();
    			});

				$(openBtn).click(function () {
      				$(lightBox).prepend('<embed width="295" height="100" flashvars="autoPlay=yes&amp;playlistPath='+xmlFile+'" quality="high" bgcolor="#FFFFFF" name="mymovie" id="'+flvPlayer+'" style="" src="/Audio/media/playerMultipleList.swf" type="application/x-shockwave-flash">');
    			});
				};
				
				function addFlash(exitBtn, objectID, openBtn, lightBox, filePath){
			    $(exitBtn).click(function () {
      				$('#'+objectID).remove();
    			});

				$(openBtn).click(function () {
      				$(lightBox).prepend('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" id="'+objectID+'" width="700" height="400"><param name="movie" value="'+filePath+'" /><param name="quality" value="high" /><embed src="../Video/stratsphere_promo.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="400"></embed></object>');
    			});
				};
