var player = null;
function playerReady(thePlayer) {
	player = window.document[thePlayer.id];
}
 
function createPlayer() {
	var flashvars = { file:videoplayer_vid_src, autostart:"false",image:videoplayer_img_src, stretching:"exactfit", plugins:videoplayer_plugins }
	var params = { allowfullscreen:"true", allowscriptaccess:"always", wmode:"transparent" }
	var attributes = { id:"player1", name:"player1"	}
	swfobject.embedSWF(videoplayer_vid_plyr, "video-container", videoplayer_width, videoplayer_height, "9", false, flashvars, params, attributes);
}

function createPlaylist() {
	var flashvars = { playlistfile:videoplayer_xml, autostart:"false",image:videoplayer_img_src, stretching:"exactfit", plugins:videoplayer_plugins }
	var params = { allowfullscreen:"true", allowscriptaccess:"always", wmode:"transparent" }
	var attributes = { id:"player1", name:"player1"	}
	swfobject.embedSWF(videoplayer_vid_plyr, "video-container", videoplayer_width, videoplayer_height, "9", false, flashvars, params, attributes);
}

function play_video(id) {
	document.getElementById('video-pic').style.display="none";
	document.getElementById('video-headers').style.display="none";
	player.sendEvent('PLAY');
}
