/**
 * Javascript files for Spotify window script
 */
function sp_window(){
	$("#sp_window").dialog({width: 620, height:620});
}
function sp_search(){
	var val = document.getElementById("sp_query").value;
	if(val.length > 0){
		$("#search_contents").html("Loading...");
		$.ajax({
			// TODO Change this later
			url: CPHP_ROOT+"/spotify_browse_fragment.php?q=" + val,
			cache: false,
			success: function(html){
				$("#search_contents").html(html);
			}
		});
	}else{
		$("#search_contents").html("");
	}
}
function select_spotify_track(uri){
	document.getElementById("spotifyUri").value = uri;
	$("#sp_window").fadeOut();
	$("#sp_window").close();
	
}

