/* Utility scripts for S&C UWS template-created pages */


// Handles the form submission for a box that contains PDF lit.
function openPdf(oForm, nRes){

    if(oForm.pdflistbox.selectedIndex == -1) {
        alert("Please select a document you wish to download.");
        return false;
    }
    else {
        window.open (oForm.pdflistbox.options[oForm.pdflistbox.selectedIndex].value);
        // document.location = oForm.pdflistbox.options[oForm.pdflistbox.selectedIndex].value;
        return false;
    }

}

// Placeholder for pages under construction
function notYet() {
    alert ("Page coming soon.");
}