// JavaScript Document



function playVideo( artist_id, video_name ) {


	var flashVideo = null;

	flashVideo = document.getElementById( 'VideoPlayer' );

	flashVideo.SetVariable("_root.playThisMovie", video_name );
	flashVideo.SetVariable("_root.artistID", artist_id );

	flashVideo.TGotoFrame("_root.player", 1);
	flashVideo.TPlay("_root.player");

	
	return true;
}
