﻿
var needToConfirm = true;
var textToShow =
	"You’re seconds away from discovering how MedReps.com matches top-earners with the most sought-after jobs in the industry";

window.onbeforeunload = confirmExit;
function confirmExit() 
{
	if (needToConfirm) {
		needToConfirm = false;  // Only do this once...
		return textToShow;
	}
}
