As I remember You cannot show custom popup,
but you can show popup to ask "changes you made may not be saved" by doing:
window.addEventListener('beforeunload', function (event) { event.preventDefault(); event.returnValue = true; });