function confirmLogOut() {
    var choice=confirm("Are you sure you would like to logout of scms?");
    if(choice) {
        return true;
    }
    return false;
}