
angiestone 276897224
bobbyv 
anthony david 298680740
hanifah 291161193
kim j 490400997


function newWindow(vidID) {
	artist = window.open(vidID, "vookwin", "width=988,height=550")
	bookWindow(focus)
	}



function angiestone() {
	<script type="text/javascript">
		// the title we will attempt to load in later
	// we're hard-coding it here, but it could be passed in on a query string 
	// or generated by a server-side script
	var title_id = "276897224";	
			
	// called by the player when it loads
	function onTemplateLoaded() {

		// add event listener, handle the event later in the functions below
		callFlash("addEventListener", "streamStart", "onStreamStart");
		callFlash("addEventListener", "titleLoad", "onTitleLoad");
		
		// set Volume
		//callFlash("setVolume", "50");
		
		// get the volume to confirm it was set correctly
		//callFlash("getVolume");
		
		// load the title above
		callFlash("getTitleById", title_id);
			
	}
	
	// Handle results of getTitleById call
	function getTitleById_Result(infoObj) {

		// If the title isn't already loaded, fetch it
		if (infoObj == undefined) {
			callFlash("fetchTitleById", title_id);
		
		// otherwise, play it
		} else {
			callFlash("loadTitleById", title_id);
		}
	}

	function getVolume_Result(vol) {
		// trace volume to the browser window
		alert(vol);
	}
	
	function onStreamStart() {
		// additional actions when the stream starts
	}	
	
	function onTitleLoad(infoObj) {
		// extract titleDTO
		var titleDTO = infoObj.parameters.title;
		
		// output title name to alert box
		//alert("title loaded: " + titleDTO.displayName);
		
		// play it in the player
		callFlash("loadTitleById", titleDTO.id);
	}
</script>

<!-- Start of Brightcove Player -->
	<script src="http://admin.brightcove.com/js/experience_util.js" type="text/javascript"></script>
	<script type="text/javascript">

 // By use of this code snippet, I agree to the Brightcove Publisher T and C 
 // found at http://www.brightcove.com/publishertermsandconditions.html. 

	 var config = new Array();

 /* 
 * feel free to edit these configurations
 * to modify the player experience
 */
	 config["videoId"] = 276897224; //the default video loaded into the player
	 config["videoRef"] = null; //the default video loaded into the player by ref id specified in console
	 config["lineupId"] = null; //the default lineup loaded into the player
	 config["playerTag"] = null; //player tag used for identifying this page in brightcove reporting
	 config["autoStart"] = true; //tells the player to start playing video on load
	 config["preloadBackColor"] = "#FFFFFF"; //background color while loading the player

	 /* do not edit these config items */
	 config["playerId"] = 296756346;
	 config["width"] = 988;
	 config["height"] = 550;

	 createExperience(config, 8);
	</script>
	<!-- End of Brightcove Player -->
}


function anthonydavid {
		<script type="text/javascript">
		// the title we will attempt to load in later
	// we're hard-coding it here, but it could be passed in on a query string 
	// or generated by a server-side script
	var title_id = "298680740";	
			
	// called by the player when it loads
	function onTemplateLoaded() {

		// add event listener, handle the event later in the functions below
		callFlash("addEventListener", "streamStart", "onStreamStart");
		callFlash("addEventListener", "titleLoad", "onTitleLoad");
		
		// set Volume
		//callFlash("setVolume", "50");
		
		// get the volume to confirm it was set correctly
		//callFlash("getVolume");
		
		// load the title above
		callFlash("getTitleById", title_id);
			
	}
	
	// Handle results of getTitleById call
	function getTitleById_Result(infoObj) {

		// If the title isn't already loaded, fetch it
		if (infoObj == undefined) {
			callFlash("fetchTitleById", title_id);
		
		// otherwise, play it
		} else {
			callFlash("loadTitleById", title_id);
		}
	}

	function getVolume_Result(vol) {
		// trace volume to the browser window
		alert(vol);
	}
	
	function onStreamStart() {
		// additional actions when the stream starts
	}	
	
	function onTitleLoad(infoObj) {
		// extract titleDTO
		var titleDTO = infoObj.parameters.title;
		
		// output title name to alert box
		//alert("title loaded: " + titleDTO.displayName);
		
		// play it in the player
		callFlash("loadTitleById", titleDTO.id);
	}
</script>

<!-- Start of Brightcove Player -->
	<script src="http://admin.brightcove.com/js/experience_util.js" type="text/javascript"></script>
	<script type="text/javascript">

 // By use of this code snippet, I agree to the Brightcove Publisher T and C 
 // found at http://www.brightcove.com/publishertermsandconditions.html. 

	 var config = new Array();

 /* 
 * feel free to edit these configurations
 * to modify the player experience
 */
	 config["videoId"] = 298680740; //the default video loaded into the player
	 config["videoRef"] = null; //the default video loaded into the player by ref id specified in console
	 config["lineupId"] = null; //the default lineup loaded into the player
	 config["playerTag"] = null; //player tag used for identifying this page in brightcove reporting
	 config["autoStart"] = true; //tells the player to start playing video on load
	 config["preloadBackColor"] = "#FFFFFF"; //background color while loading the player

	 /* do not edit these config items */
	 config["playerId"] = 296756346;
	 config["width"] = 988;
	 config["height"] = 550;

	 createExperience(config, 8);
	</script>
	<!-- End of Brightcove Player -->
}



