function deleteListing(url) {
    if(confirm('Delete this listing?')==true)
	{
		window.location=url;
	};
}
function deleteUser(url) {
    if(confirm('Delete this user?')==true)
	{
		window.location=url;
	};
}
function deleteMember(url) {
    if(confirm('Delete this Member?\n\nCAUTION: all listings for this member will also be deleted immediately.')==true)
	{
		window.location=url;
	};
}
function deleteArtist(url) {
    if(confirm('Delete this Artist?\n\nCAUTION: all listings for this artist will also be deleted immediately.')==true)
	{
		window.location=url;
	};
}

$(document).ready(function(){
	$('.accordion').hide();
	$('#showmore').toggle(function() {
  		$('.accordion').show();
	}, function() {
  		$('.accordion').hide();
	});
});
