function loadVideo(p_player, p_url) {
	p_player.load(p_url);
}

function playVideo(p_player, p_url) {
	p_player.play(p_url);
	isPlaying = true;	
}