function play_pause_video(id, title){
	var player_state = getPlayerState();
	if (id != current_id) {
		previous_id = current_id;
	 	current_id = id;
	 	if(previous_id != 0) { // Hide the loader image of previous song
	 		$('video_loading_icon_'+previous_id).style.display = 'none';
	 		$('video_loading_icon_'+current_id).style.display = 'block';
	 		$('seek_curr_time_'+previous_id).style.display = "none";
	 		stopVideo();
	 	}
		playNewVideo(id,title);
	} else if(player_state == '1')  { 
		if (id == current_id) {
			pauseVideo();
		}
	} else if (player_state == '2') {
		if (id == current_id) {
			playVideo();
		}
	} 
}