function checkNavOut(destination) {
var destination = "/cms/distevent/DistEvent.action?resetDistEvent&_sourcePage=/distevent/distevent.jsp"
if (confirm ("Resetting the statement will clear the form. All entered data will be lost. Do you want to proceed?")) {
location.href = destination;
}
}
function submitApp() {
if (confirm ("Resetting the statement will clear the form. All entered data will be lost. Do you want to proceed?")) {
return true;
}
return false;
}
function scrollToVenue() {
if ( "" == "Y" ) {
var setList = document.getElementById("setListId");
setList.scrollTop = setList.scrollHeight;
link = "#venueAreaId";
location.href = link;
var venue = document.getElementById("venueNameId");
venue.focus();
}
return;
}
function scrollToWork() {
if ( "" == "Y" ) {
var setList = document.getElementById("setListId");
setList.scrollTop = setList.scrollHeight;
link = "#workAreaId";
location.href = link;
var title = document.getElementById("titleId");
title.focus();
}
return;
}