    function downloadFile(thisFile) 
    { 
        var baseURL = "http://www.longviewadvisors.com/images/stories/docs/";
        var scriptFile = "http://www.longviewadvisors.com/sendEmail.php";
        var thisName = document.documentDownload.name.value;
        var thisEmail = document.documentDownload.email.value;
        var thisAddress = document.documentDownload.address.value;
        var thisCity = document.documentDownload.city.value;
        var thisState = document.documentDownload.state.value;
        var thisZipcode = document.documentDownload.zipcode.value;
        var thisPhone = document.documentDownload.phone.value;
        var scriptParams = "?file=" + thisFile;
        
        if (thisName=="" || thisName == null || thisName==" " || thisName=="  " || thisName=="   " || thisName=="    ") {
            alert('Please enter your name.');
            document.documentDownload.name.focus();
        }
        else if (thisEmail=="" || thisEmail == null || thisEmail==" " || thisEmail=="  " || thisEmail=="   " || thisEmail=="    ") {
            alert('Please enter an email address.');
            document.documentDownload.email.focus();
        }
        else {
            window.open(baseURL+thisFile,'file','left=20,top=20,width=500,height=500,scrollbar=1,location=1,menubar=1,toolbar=1,resizable=1');
            document.documentDownload.file.value = thisFile;
            document.documentDownload.submit();
        }
    } 
