
function editArtist(id)
{
	var win = window.open("EditArtist.php?artist_id="+id, "_blank", "width=780,height=560,resizable=yes, scrollbars=yes,status=yes");
	win.focus();
}

function removeArtist(id)
{
	if (prompt("Permanently remove artist?"))
	{
		document.location.href="artists.php?command=remove-artist&artist_id="+id;
	}
}