function show_player(playerid, lineupid, videoid) {
// By use of this code snippet, I agree to the Brightcove Publisher T and C 
// found at http://corp.brightcove.com/legal/terms_publisher.cfm. 

var config = new Array();

/* 
* feel free to edit these configurations
* to modify the player experience
*/
config["videoId"] = videoid;
config["videoRef"] = null;
config["lineupId"] = lineupid;
config["playerTag"] = null;
config["autoStart"] = false;
config['wmode'] = "transparent";
config["preloadBackColor"] = "#FFFFFF"; //background color while loading the player

/* do not edit these config items */
config["playerId"] = playerid;
config["width"] = 520;
config["height"] = 587;

createExperience(config, 8);
}