function confirmActive() {
	if(confirm("Do you really want to mark this listing as Active?  This will enable all people to view your listing.")) {
		return true;
	} else {
		return false;
	}
}

function confirmInactive() {
	if(confirm("Do you really want to mark this listing as Inactive?  This will make your listing private.  You can reactivate your listing later but it will keep it's original expiration date.")) {
		return true;
	} else {
		return false;
	}
}

function confirmDelete() {
	if(confirm("Do you really want to delete this listing?  Your listing will no longer be available to anyone.")) {
		return true;
	} else {
		return false;
	}
}