//open new window with staff member
function showStaff(url){
     window.open(url,'StaffPopup','height=600,width=600,menubar=0,toolbar=0,scrollbars=1');
}

function showGroundSpreaders(url){
     window.open(url,'GroundSpreaders','height=600,width=600,menubar=0,toolbar=0,scrollbars=1');
}

var regEmail = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/;

function testEmail(email){
    if (regEmail.test(email))
        return true;
    return false;
}
