var needToConfirm = false;
window.onbeforeunload = confirmExit;
function confirmExit() {
	if (needToConfirm) { return "If you have made any changes to your list without clicking the Save button, your changes will be lost.  Are you sure you want to exit this page?"; }
}

sections = ['results','list'];
Event.observe(window, 'load', init, false);
function init(){
		Event.observe('searchContent', 'submit', getSearchContent, false);
		Event.observe('saveList', 'submit', saveList, false);
}