var imgAbout = "top_nav_about.jpg";
var imgAboutOver = "top_nav_about_a.jpg";

var imgLicensing = "top_nav_licensing.jpg";
var imgLicensingOver = "top_nav_licensing_a.jpg";

var imgPurchasing = "top_nav_purchasing.jpg";
var imgPurchasingOver = "top_nav_purchasing_a.jpg";

var imgCommissioning = "top_nav_commissioning.jpg";
var imgCommissioningOver = "top_nav_commissioning_a.jpg";

var imgContact = "top_nav_contact_us.jpg";
var imgContactOver = "top_nav_contact_us_a.jpg";

var imgStaticGallery1 = "thumb_nav_1.gif";
var imgStaticGalleryOver1 = "thumb_nav_1_a.gif";

var imgStaticGallery2 = "thumb_nav_2.gif";
var imgStaticGalleryOver2 = "thumb_nav_2_a.gif";

var imgStaticGallery3 = "thumb_nav_3.gif";
var imgStaticGalleryOver3 = "thumb_nav_3_a.gif";

var imgStaticGallery4 = "thumb_nav_4.gif";
var imgStaticGalleryOver4 = "thumb_nav_4_a.gif";

var imgStaticGallery5 = "thumb_nav_5.gif";
var imgStaticGalleryOver5 = "thumb_nav_5_a.gif";

var imgPrevOut = "left_scroll_button.jpg";
var imgPrevOver = "left_scroll_button_a.jpg";
var imgPrevNone = "left_scroll_button_b.jpg";

var imgNextOut = "right_scroll_button.jpg";
var imgNextOver = "right_scroll_button_a.jpg";
var imgNextNone = "right_scroll_button_b.jpg";


function SwapImage(ImageID,Path) {
    document.getElementById(ImageID).src = "images/" + Path;
}

function InitializeSection(SectNum){

    CurrentSection = SectNum;
    CurrentPage = 1;

    SetPage(1);
    SetImage(1);

}

function SetImage(ImageNum) {
    if (ImageNum != "") {
        if (!isNaN(ImageNum)) {
            MainImage.src = "images/" + eval("CurrentMain" + ImageNum);
            PaintingTitle.innerHTML = eval("CurrentTitle" + ImageNum);
            PaintingDesc.innerHTML = eval("CurrentDesc" + ImageNum);
            PaintingPurchase.innerHTML = eval("CurrentPurchase" + ImageNum);
            PaintingLicensing.innerHTML = eval("CurrentLicensing" + ImageNum);
            PaintingMailLink.innerHTML = eval("CurrentMailLink" + ImageNum);
        }
        else {
            ChangePage(ImageNum);
        }
    }
}

function SetPage(PageNum) {
   CurrentPage = PageNum;
    

   if(CurrentSection == 1 & CurrentPage == 1){
        SwapImage('DynamicNavPrev', imgPrevNone);
        CurrentPrevOver = imgPrevNone;
        CurrentPrevOut = imgPrevNone;
        CurrentPrevLink = "";
   }
   else {
        SwapImage('DynamicNavPrev', imgPrevOut);
        CurrentPrevOver = imgPrevOver;
        CurrentPrevOut = imgPrevOut;
        CurrentNextLink = eval("Section" + CurrentSection + "PrevSectionLink");
   }

   if (CurrentSection == SectionCount & CurrentPage == eval("Section" + CurrentSection + "PageCount")) {
        SwapImage('DynamicNavNext', imgNextNone);
        CurrentNextOver = imgNextNone;
        CurrentNextOut = imgNextNone;
        CurrentNextLink = "";
   }
   else {
       SwapImage('DynamicNavNext', imgNextOut);
       CurrentNextOver = imgNextOver;
       CurrentNextOut = imgNextOut;
       CurrentNextLink = eval("Section" + CurrentSection + "NextSectionLink");
   }


   if (CurrentPage == 1) {
       SwapImage('DynamicNav1', eval("Section" + CurrentSection + "Title"));
       CurrentOut1 = eval("Section" + CurrentSection + "Title");
       CurrentOver1 = eval("Section" + CurrentSection + "TitleOver");
       CurrentMain1 = eval("Section" + CurrentSection + "Full1");

       CurrentTitle1 = eval("Section" + CurrentSection + "Title1");
       CurrentDesc1 = eval("Section" + CurrentSection + "Desc1");
       CurrentPurchase1 = eval("Section" + CurrentSection + "Purchase1");
       CurrentLicensing1 = eval("Section" + CurrentSection + "Licensing1");
       CurrentMailLink1 = eval("Section" + CurrentSection + "MailLink1");

       eval("CurrentLink1 = Section" + CurrentSection + "Link;");

       var MyCount=1;
       for(MyCount = 1; MyCount < 5; MyCount++) {
           if (eval("Section" + CurrentSection + "Count") >= MyCount) {
               SwapImage('DynamicNav' + (MyCount+1), eval("Section" + CurrentSection + "Thumb" + MyCount));
               eval("CurrentOut" + (MyCount + 1) + " = Section" + CurrentSection + "Thumb" + MyCount);
               eval("CurrentOver" + (MyCount + 1) + " = Section" + CurrentSection + "ThumbOver" + MyCount);
               eval("CurrentMain" + (MyCount + 1) + " = Section" + CurrentSection + "Full" + MyCount);

               eval("CurrentTitle" + (MyCount + 1) + " = Section" + CurrentSection + "Title" + MyCount);
               eval("CurrentDesc" + (MyCount + 1) + " = Section" + CurrentSection + "Desc" + MyCount);
               eval("CurrentPurchase" + (MyCount + 1) + " = Section" + CurrentSection + "Purchase" + MyCount);
               eval("CurrentLicensing" + (MyCount + 1) + " = Section" + CurrentSection + "Licensing" + MyCount);
               eval("CurrentMailLink" + (MyCount + 1) + " = Section" + CurrentSection + "MailLink" + MyCount);

               eval("CurrentLink" + (MyCount + 1) + " = MyCount+1;");
           }
           else {
               if ((MyCount + 2) >= eval("Section" + CurrentSection + "Count")) {
                   SwapImage('DynamicNav' + (MyCount + 1), "spacer.gif");
                   eval("CurrentOut" + (MyCount + 1) + " = 'spacer.gif';");
                   eval("CurrentOver" + (MyCount + 1) + "= 'spacer.gif';");
                   eval("CurrentMain" + (MyCount + 1) + " = '';");
                   eval("CurrentLink" + (MyCount + 1) + " = '';");
               }
               else {
                   SwapImage('DynamicNav' + (MyCount + 1), eval("Section" + CurrentSection + "NextSection"));
                   eval("CurrentOut" + (MyCount + 1) + " = Section" + CurrentSection + "NextSection;");
                   eval("CurrentOver" + (MyCount + 1) + "= Section" + CurrentSection + "NextSectionOver;");
                   eval("CurrentMain" + (MyCount + 1) + " = '';");
                   eval("CurrentLink" + (MyCount + 1) + " = Section" + CurrentSection + "NextSectionLink;");
               }
           }
       }
   }
   else {
       var MyCount = 1;
       var myImageNumber = (5 * (CurrentPage-1));

      
       for (MyCount = 1; MyCount <= 5; MyCount++) {
           if (eval("Section" + CurrentSection + "Count") >= myImageNumber) {
               SwapImage('DynamicNav' + MyCount, eval("Section" + CurrentSection + "Thumb" + myImageNumber));
               eval("CurrentOut" + MyCount + " = Section" + CurrentSection + "Thumb" + myImageNumber);
               eval("CurrentOver" + MyCount + " = Section" + CurrentSection + "ThumbOver" + myImageNumber);
               eval("CurrentMain" + MyCount + " = Section" + CurrentSection + "Full" + myImageNumber);

               eval("CurrentTitle" + MyCount + " = Section" + CurrentSection + "Title" + myImageNumber);
               eval("CurrentDesc" + MyCount + " = Section" + CurrentSection + "Desc" + myImageNumber);
               eval("CurrentPurchase" + MyCount + " = Section" + CurrentSection + "Purchase" + myImageNumber);
               eval("CurrentLicensing" + MyCount + " = Section" + CurrentSection + "Licensing" + myImageNumber);
               eval("CurrentMailLink" + MyCount + " = Section" + CurrentSection + "MailLink" + myImageNumber);

               eval("CurrentLink" + MyCount + " = MyCount;");
           }
           else {
               if (((myImageNumber - 1) > eval("Section" + CurrentSection + "Count")) | (((myImageNumber > eval("Section" + CurrentSection + "Count")) & SectionCount == CurrentSection))) {
                   SwapImage('DynamicNav' + MyCount, "spacer.gif");
                   eval("CurrentOut" + MyCount + " = 'spacer.gif';");
                   eval("CurrentOver" + MyCount + "= 'spacer.gif';");
                   eval("CurrentMain" + MyCount + " = ''");
                   eval("CurrentLink" + MyCount + " = '';");
               }
               else {
                   SwapImage('DynamicNav' + MyCount, eval("Section" + CurrentSection + "NextSection"));
                   eval("CurrentOut" + MyCount + " = Section" + CurrentSection + "NextSection;");
                   eval("CurrentOver" + MyCount + "= Section" + CurrentSection + "NextSectionOver;");
                   eval("CurrentMain" + MyCount + " = ''");
                   eval("CurrentLink" + MyCount + " = Section" + CurrentSection + "NextSectionLink;");
               }
           }
           myImageNumber += 1;
       }
   }
}

function ChangePage(Link) {
    if(Link != ""){
        document.location = Link;
    }
}

function PrevNav() {
    if (CurrentPage > 1) {
        SetPage(CurrentPage -1);
    }
    else {
        if (CurrentSection > 1) {
            document.location = eval("Section" + CurrentSection + "PrevSectionLink");
        }
    }
}

function NextNav() {
    if (eval("Section" + CurrentSection + "Count") > 4 + (5 * (CurrentPage - 1)) & !(CurrentPage==eval("Section" + CurrentSection + "PageCount"))) {
        SetPage(CurrentPage + 1);
    }
    else {
        if(CurrentSection < SectionCount){
            document.location = eval("Section" + CurrentSection + "NextSectionLink");
        }
    }
}

var CurrentSection = 1;
var CurrentPage = 1;
var CurrentPrevOver = "left_scroll_button_b.jpg";
var CurrentPrevOut = "left_scroll_button_b.jpg";

var CurrentOver1 = "day_T1967_thm.jpg";
var CurrentOut1 = "day_T1967_thm_a.jpg";
var CurrentMain1 = "day_T1967_KM.jpg";
var CurrentTitle1 = "";
var CurrentDesc1 = "";
var CurrentPurchasing1 = "";
var CurrentLicensing1 = "";
var CurrentMailLink1 = "";

var CurrentLink1 = 1;
var CurrentLink2 = 2;
var CurrentLink3 = 3;
var CurrentLink4 = 4;
var CurrentLink5 = 5;

var CurrentOver2 = "day_T1969a_thm.jpg";
var CurrentOut2 = "day_T1969a_thm_a.jpg";
var CurrentMain2 = "day_T1969a_KM.jpg";
var CurrentTitle2 = "";
var CurrentDesc2 = "";
var CurrentPurchasing2 = "";
var CurrentLicensing2 = "";
var CurrentMailLink2 = "";


var CurrentOver3 = "day_T1969b_thm.jpg";
var CurrentOut3 = "day_T1969b_thm_a.jpg";
var CurrentMain3 = "day_T1969b_KM.jpg";
var CurrentTitle3 = "";
var CurrentDesc3 = "";
var CurrentPurchasing3 = "";
var CurrentLicensing3 = "";
var CurrentMailLink3 = "";

var CurrentOver4 = "day_T1970b_thm.jpg";
var CurrentOut4 = "day_T1970b_thm_a.jpg";
var CurrentMain4 = "day_T1970b_KM.jpg";
var CurrentTitle4 = "";
var CurrentDesc4 = "";
var CurrentPurchasing4 = "";
var CurrentLicensing4 = "";
var CurrentMailLink4 = "";


var CurrentOver5 = "day_T1971g_thm.jpg";
var CurrentOut5 = "day_T1971g_thm_a.jpg";
var CurrentMain5 = "day_T1971g_KM.jpg";
var CurrentTitle5 = "";
var CurrentDesc5 = "";
var CurrentPurchasing5 = "";
var CurrentLicensing5 = "";
var CurrentMailLink5 = "";


var CurrentNextOver = "right_scroll_button_b.jpg";
var CurrentNextOut = "right_scroll_button_b.jpg";

var CurrentPrevLink = "";
var CurrentNextLink = "";

var SectionCount = 5;

var Section1Link = "day.html";
var Section1Count = 30;
var Section1PageCount = 7;

var Section1Title = "day_title_thm.jpg";
var Section1TitleOver = "day_title_thm_a.jpg";

var Section1PrevSection = "none.jpg";
var Section1PrevSectionOver = "none.jpg";
var Section1PrevSectionLink = "none.html";

var Section1NextSection = "cut_title_thm.jpg";
var Section1NextSectionOver = "cut_title_thm_a.jpg";
var Section1NextSectionLink = "cut.html";

var Section1Thumb1 = "day_T1967_KM_thm.jpg";
var Section1ThumbOver1 = "day_T1967_KM_thm_a.jpg";
var Section1Full1 = "day_T1967_KM.jpg";
var Section1Title1 = "<h5><i> </i></h1><br> \n\
<h2>&ldquo;R.M.S. <i>Titanic</i>&rdquo;</h2>";
var Section1Desc1 = "<span class=\"Available\">T1967</span><br><br>\
My first <i>Titanic</i> painting, done in 1967 at the age of 16. Clearly a &ldquo;primitive&rdquo;!<br><br>Oil on canvas board<br>12 x 16” (30.5 x40.6 cm)";
var Section1Purchase1 = "NO";
var Section1Licensing1 = "YES";
var Section1MailLink1 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1967\" class=\"maillink\">CONTACT US <br>About Painting T1967 </a>";

var Section1Thumb2 = "day_T1969a_KM_thm.jpg";
var Section1ThumbOver2 = "day_T1969a_KM_thm_a.jpg";
var Section1Full2 = "day_T1969a_KM.jpg";
var Section1Title2 = "<h1><i> </i></h1><br> \n\
";
var Section1Desc2 = "<span class=\"Available\">T1969a</span><br><br>\
This was a small, rough proposal, or maquette, for a larger painting which was to be my first commission.<br><br>Acrylic on illustration board<br>7 7/8 x 9 5/8” (20 x 24.5 cm)";
var Section1Purchase2 = "NO";
var Section1Licensing2 = "NO";
var Section1MailLink2 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1969a\" class=\"maillink\">CONTACT US <br>About Painting T1969a </a>";

var Section1Thumb3 = "day_T1969b_KM_thm.jpg";
var Section1ThumbOver3 = "day_T1969b_KM_thm_a.jpg";
var Section1Full3 = "day_T1969b_KM.jpg";
var Section1Title3 = "<h1><i> </i></h1><br> \n\
<h2>&ldquo;R.M.S. <i>Titanic,</i> <br>April 1912&rdquo;</h2>";
var Section1Desc3 = "<span class=\"Available\">T1969b</span><br><br>\
My first commissioned painting, as completed. For many years afterward I felt this was my favorite, but of course I now look on it as rather primitive.<br><br>Acrylic on canvas board<br>18 x 22” (45.7 x 55.9 cm)";
var Section1Purchase3 = "NO";
var Section1Licensing3 = "NO";
var Section1MailLink3 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1969b\" class=\"maillink\">CONTACT US  <br>About Painting T1969b </a>";

var Section1Thumb4 = "day_T1970b_KM_thm_ny.jpg";
var Section1ThumbOver4 = "day_T1970b_KM_thm_ny_a.jpg";
var Section1Full4 = "day_T1970b_KM_ny.jpg";
var Section1Title4 = "<h1><i> </i></h1><br> \n\
<h2>&ldquo;R.M.S. <i>Titanic</i> Arriving at New York, April 17, 1912&rdquo;</h2>";
var Section1Desc4 = "<span class=\"Available\">T1970b</span><br><br>\
A hypothetical scene commissioned by author Walter Lord showing how the event might have appeared if <i>Titanic</i> had not met an iceberg.<br><br>Acrylic on canvas board<br>16 x 20” (40.6 x 50.8 cm)";
var Section1Purchase4 = "NO";
var Section1Licensing4 = "YES";
var Section1MailLink4 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1970b\" class=\"maillink\">CONTACT US  <br>About Painting T1970b </a>";


var Section1Thumb5 = "day_T1971g_KM_thm_ny.jpg";
var Section1ThumbOver5 = "day_T1971g_KM_thm_ny_a.jpg";
var Section1Full5 = "day_T1971g_KM_ny.jpg";
var Section1Title5 = "<h1><i> </i></h1><br> \n\
<h2>&ldquo;R.M.S. <i>Titanic,</i> The First Crossing, April 17, 1912&rdquo;</h2>";
var Section1Desc5 = "<span class=\"Available\">T1971g</span><br><br>\
Another fanciful portrayal of a happy and successful arrival in New York, hours early at a pace that exceeded her sister ship's maiden voyage speed.<br><br>Acrylic on stretched canvas<br>16 x 20” (40.6 x 50.8 cm)";
var Section1Purchase5 = "NO";
var Section1Licensing5 = "YES";
var Section1MailLink5 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1971g\" class=\"maillink\">CONTACT US  <br>About Painting T1971g </a>";


var Section1Thumb6 = "day_T1972a_KM_thm.jpg";
var Section1ThumbOver6 = "day_T1972a_KM_thm_a.jpg";
var Section1Full6 = "day_T1972a_KM.jpg";
var Section1Title6 = "<h1><i> </i></h1><br> \n\
";
var Section1Desc6 = "<span class=\"Available\">T1972a</span><br><br>\
A self-motivated experiment to try a different medium. <br>I sold it years later.<br><br>Ink wash on <br>illustration board<br>11 x 30” (27.9 x 76.2 cm)";
var Section1Purchase6 = "NO";
var Section1Licensing6 = "YES";
var Section1MailLink6 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1972a\" class=\"maillink\">CONTACT US <br>About Painting T1972a </a>";

var Section1Thumb7 = "day_T1972b_KM_thm.jpg";
var Section1ThumbOver7 = "day_T1972b_KM_thm_a.jpg";
var Section1Full7 = "day_T1972b_KM.jpg";
var Section1Title7 = "<h1><i> </i></h1><br> \n\
<h2>&ldquo;R.M.S. <i>Titanic,</i> White Star Line, 1912&rdquo;</h2>";
var Section1Desc7 = "<span class=\"Available\">T1972b</span><br><br>\
I believe this commission ended up being my first published color cover - a 1974 issue of <i>Sea Classics</i> magazine.<br><br>Acrylic on stretched canvas<br>24 x 36” (61 x 91.4 cm)";
var Section1Purchase7 = "NO";
var Section1Licensing7 = "YES";
var Section1MailLink7 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1972b\" class=\"maillink\">CONTACT US <br>About Painting T1972b </a>";

var Section1Thumb8 = "day_T1972d_KM_thm.jpg";
var Section1ThumbOver8 = "day_T1972d_KM_thm_a.jpg";
var Section1Full8 = "day_T1972d_KM.jpg";
var Section1Title8 = "<h1><i> </i></h1><br> \n\
<h2>&ldquo;R.M.S. <i>Titanic,</i> White Star Line, 1912&rdquo;</h2>";
var Section1Desc8 = "<span class=\"Available\">T1972d</span><br><br>\
A very early portside view. <br><br>Acrylic on stretched canvas <br>16 x 20” (40.6 x 50.8 cm)";
var Section1Purchase8 = "NO";
var Section1Licensing8 = "YES";
var Section1MailLink8 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1972d\" class=\"maillink\">CONTACT US <br>About Painting T1972d </a>";

var Section1Thumb9 = "day_T1973a_KM_thm.jpg";
var Section1ThumbOver9 = "day_T1973a_KM_thm_a.jpg";
var Section1Full9 = "day_T1973a_KM.jpg";
var Section1Title9 = "<h1><i> </i></h1><br> \n\
<h2>&ldquo;R.M.S. <i>Titanic</i> En Route to Cherbourg, France, April 10, 1912&rdquo;</h2>";
var Section1Desc9 = "<span class=\"Available\">T1973a</span><br><br>\
Before I learned that the weather was really rather pleasant on this brief passage, I painted this moody scene instilling a sense of foreboding. <br>Acrylic on stretched canvas <br>15 x 30” (38.1 x 76.2 cm)";
var Section1Purchase9 = "NO";
var Section1Licensing9 = "YES";
var Section1MailLink9 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1973a\" class=\"maillink\">CONTACT US <br>About Painting T1973a </a>";

var Section1Thumb10 = "day_T1973c_KM_thm.jpg";
var Section1ThumbOver10 = "day_T1973c_KM_thm_a.jpg";
var Section1Full10 = "day_T1973c_KM.jpg";
var Section1Title10 = "<h1><i> </i></h1> \n\
<h2>&ldquo;R.M.S. <i>Titanic</i>, Sunday April 14, 1912&rdquo;</h2>";
var Section1Desc10 = "<span class=\"Available\">T1973c</span><br><br>\
Commissions were coming in increasing numbers around this time. A client requested this near broadside view. <br><br>Acrylic on stretched canvas <br>16 x 20” (40.6 x 50.8 cm)";
var Section1Purchase10 = "NO";
var Section1Licensing10 = "YES";
var Section1MailLink10 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1973c\" class=\"maillink\">CONTACT US <br>About Painting T1973c </a>";

var Section1Thumb11 = "day_T1973d_KM_thm.jpg";
var Section1ThumbOver11 = "day_T1973d_KM_thm_a.jpg";
var Section1Full11 = "day_T1973d_KM.jpg";
var Section1Title11 = "<h1><i> </i></h1> \n\
<h2>&ldquo;R.M.S. <i>Titanic</i>, White Star Line, 1912&rdquo;</h2>";
var Section1Desc11 = "<span class=\"Available\">T1973d</span><br><br>\
The simplicity and boldness of this one has always made it one of my favorites. <br><br>Acrylic on stretched canvas <br>24 x 36” (61 x 91.4 cm)";
var Section1Purchase11 = "NO";
var Section1Licensing11 = "YES";
var Section1MailLink11 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1973d\" class=\"maillink\">CONTACT US <br>About Painting T1973d </a>";

var Section1Thumb12 = "day_T1973f_KM_thm.jpg";
var Section1ThumbOver12 = "day_T1973f_KM_thm_a.jpg";
var Section1Full12 = "day_T1973f_KM.jpg";
var Section1Title12 = "<h1><i> </i></h1> \n\
<h2>&ldquo;R.M.S. <i>Titanic</i>&rdquo;</h2>";
var Section1Desc12 = "<span class=\"Available\">T1973f</span><br><br>\
1973 was a very busy year for commissions, as was the following year. Not until the wreck was found would I be so busy again with <br><i>Titanic</i> art. <br><br>Acrylic on stretched canvas <br>16 x 20” (40.6 x 50.8 cm)";
var Section1Purchase12 = "NO";
var Section1Licensing12 = "YES";
var Section1MailLink12 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1973f\" class=\"maillink\">CONTACT US <br>About Painting T1973f </a>";

var Section1Thumb13 = "day_T1974e_KM_thm.jpg";
var Section1ThumbOver13 = "day_T1974e_KM_thm_a.jpg";
var Section1Full13 = "day_T1974e_KM.jpg";
var Section1Title13 = "<h1><i> </i></h1><br> \n\
";
var Section1Desc13 = "<span class=\"Available\">T1974e</span><br><br>\
Commissioned for a low budget, this is one of the “loosest” paintings I’ve ever done. <br><br>Acrylic on stretched canvas <br>12 x 16” (30.5 x 40.6 cm)";
var Section1Purchase13 = "NO";
var Section1Licensing13 = "YES";
var Section1MailLink13 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1974e\" class=\"maillink\">CONTACT US <br>About Painting T1974e </a>";

var Section1Thumb14 = "day_T1974g_KM_thm.jpg";
var Section1ThumbOver14 = "day_T1974g_KM_thm_a.jpg";
var Section1Full14 = "day_T1974g_KM.jpg";
var Section1Title14 = "<h1><i> </i></h1><br> \n\
";
var Section1Desc14 = "<span class=\"Available\">T1974g</span><br><br>\
Copy of the famous illustration that appeared with the published black-and-white 1912 Vinolia Otto Toilet Soap advertisement. <br><br>Acrylic on stretched canvas <br>12 x 16” (30.5 x 40.6 cm)";
var Section1Purchase14 = "NO";
var Section1Licensing14 = "YES";
var Section1MailLink14 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1974g\" class=\"maillink\">CONTACT US <br>About Painting T1974g </a>";

var Section1Thumb15 = "day_T1975b_KM_thm_queenstown.jpg";
var Section1ThumbOver15 = "day_T1975b_KM_thm_queenstown_a.jpg";
var Section1Full15 = "day_T1975b_KM_queenstown.jpg";
var Section1Title15 = "<h1><i> </i></h1><br> \n\
<h2>&ldquo;Off Roche's Point&rdquo;</h2>";
var Section1Desc15 = "<span class=\"Available\">T1975b</span><br><br>\
This painting shows <i>Titanic</i> at anchor just outside Queenstown (now Cobh) Harbor, Ireland, on April 11, 1912. <br><br>Acrylic on stretched canvas <br>24 x 36” (61 x 91.4 cm)";
var Section1Purchase15 = "NO";
var Section1Licensing15 = "YES";
var Section1MailLink15 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1975b\" class=\"maillink\">CONTACT US <br>About Painting T1975b </a>";

var Section1Thumb16 = "day_T1976c_KM_thm_southampton.jpg";
var Section1ThumbOver16 = "day_T1976c_KM_thm_southampton_a.jpg";
var Section1Full16 = "day_T1976c_KM_southampton.jpg";
var Section1Title16 = "<h1><i> </i></h1><br> \n\
<h2>&ldquo;Farewell to Southampton&rdquo;</h2>";
var Section1Desc16 = "<span class=\"Available\">T1976c</span><br><br>\
<i>Titanic</i> begins to move away from Berth 44 at the White Star Dock just after noon on April 10, 1912. This has always been one of my favorites. <br><br>Acrylic on stretched canvas <br>15 x 30” (38.1 x 76.2 cm)";
var Section1Purchase16 = "NO";
var Section1Licensing16 = "YES";
var Section1MailLink16 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1976c\" class=\"maillink\">CONTACT US <br>About Painting T1976c </a>";

var Section1Thumb17 = "day_T1977a_KM_thm.jpg";
var Section1ThumbOver17 = "day_T1977a_KM_thm_a.jpg";
var Section1Full17 = "day_T1977a_KM.jpg";
var Section1Title17 = "<h1><i> </i></h1><br> \n\
<h2>&ldquo;R.M.S. <i>Titanic</i> off Kinsale Head, Ireland, April 11, 1912&rdquo;</h2>";
var Section1Desc17 = "<span class=\"Available\">T1977a</span><br><br>\
This is shortly after departing her anchorage off Queenstown (now Cobh), with the famous lighthouse at the Old Head of Kinsale in the distance. <br>Acrylic on stretched canvas <br>24 x 48” (61 x 121.9 cm)";
var Section1Purchase17 = "NO";
var Section1Licensing17 = "YES";
var Section1MailLink17 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1977a\" class=\"maillink\">CONTACT US <br>About Painting T1977a </a>";

var Section1Thumb18 = "day_T1980a1_KM_thm.jpg";
var Section1ThumbOver18 = "day_T1980a1_KM_thm_a.jpg";
var Section1Full18 = "day_T1980a1_KM.jpg";
var Section1Title18 = "<h1><i> </i></h1><br> \n\
";
var Section1Desc18 = "<span class=\"Available\">T1980a1</span><br><br>\
Maquette proposal for a moody cover image showing <i>Titanic</i> emerging from a fog, for the book <i>The Titanic, The Psychic and the Sea</i>. <br><br>Acrylic on board <br>8 5/8 x 6” (21.9 x 15.2 cm)";
var Section1Purchase18 = "NO";
var Section1Licensing18 = "YES";
var Section1MailLink18 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1980a1\" class=\"maillink\">CONTACT US <br>About Painting T1980a1 </a>";

var Section1Thumb19 = "day_T1982b_KM_thm.jpg";
var Section1ThumbOver19 = "day_T1982b_KM_thm_a.jpg";
var Section1Full19 = "day_T1982b_KM.jpg";
var Section1Title19 = "<h1><i> </i></h1><br> \n\
<h2>&ldquo;Greatest of the <br>Works of Man&rdquo;</h2>";
var Section1Desc19 = "<span class=\"Available\">T1982b</span><br><br>\
Created for purposes of drama and impact and not intended to represent any particular moment in <i>Titanic</i>&rsquo;s brief history, this is probably my favorite painting. <br><br>Oil on stretched canvas <br>18 x 14” (45.7 x 35.6 cm)";
var Section1Purchase19 = "NO";
var Section1Licensing19 = "YES";
var Section1MailLink19 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1982b\" class=\"maillink\">CONTACT US <br>About Painting T1982b </a>";

var Section1Thumb20 = "day_T1992a_KM_thm.jpg";
var Section1ThumbOver20 = "day_T1992a_KM_thm_a.jpg";
var Section1Full20 = "day_T1992a_KM.jpg";
var Section1Title20 = "<h1><i> </i></h1><br> \n\
";
var Section1Desc20 = "<span class=\"Available\">T1992a</span><br><br>\
Painted for the dust jacket of the book <i>Titanic: An Illustrated History</i>, I wanted to give this scene a slightly moody feel, with the ominous clouds in the distance.<br><br>Acrylic on board <br>22 x 28” (55.9 x 71.1 cm)";
var Section1Purchase20 = "YES";
var Section1Licensing20 = "YES";
var Section1MailLink20 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1992a\" class=\"maillink\">CONTACT US <br>About Painting T1992a </a>";


var Section1Thumb21 = "day_T1992b_KM_thm.jpg";
var Section1ThumbOver21 = "day_T1992b_KM_thm_a.jpg";
var Section1Full21 = "day_T1992b_KM.jpg";
var Section1Title21 = "<h1><i> </i></h1><br> \n\
<h2>&ldquo;The Final Encounter&rdquo;</h2>";
var Section1Desc21 = "<span class=\"Available\">T1992b</span><br><br>\
Near sunset on April 3, 1912, <i>Titanic</i> passes her sister ship <i>Olympic</i> off Portland on the south coast of England, as reported in an English newspaper of the time. It would be their only passing at sea. <br><br>Acrylic on board <br>18 x 30” (45.7 x 76.2 cm)";
var Section1Purchase21 = "YES";
var Section1Licensing21 = "YES";
var Section1MailLink21 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1992b\" class=\"maillink\">CONTACT US <br>About Painting T1992b </a>";

var Section1Thumb22 = "day_T1996a1_KM_thm_southampton.jpg";
var Section1ThumbOver22 = "day_T1996a1_KM_thm_southampton_a.jpg";
var Section1Full22 = "day_T1996a1_KM_southampton.jpg";
var Section1Title22 = "<h1><i> </i></h1><br> \n\
";
var Section1Desc22 = "<span class=\"Available\">T1996a1</span><br><br>\
A wide-angled view looking aft along <i>Titanic</i>&rsquo;s port side at Berth 44, White Star Dock, Southampton, within a half hour of sailing. Another of the more rigorously researched and time consuming paintings I&rsquo;ve ever done. <br><br>Acrylic on board <br>20 x 24” (50.8 x 61 cm)";
var Section1Purchase22 = "YES";
var Section1Licensing22 = "YES";
var Section1MailLink22 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1996a1\" class=\"maillink\">CONTACT US <br>About Painting T1996a1 </a>";

var Section1Thumb23 = "day_T1996a2-02_KM_thm_southampton.jpg";
var Section1ThumbOver23 = "day_T1996a2-02_KM_thm_southampton_a.jpg";
var Section1Full23 = "day_T1996a2-02_KM_southampton.jpg";
var Section1Title23 = "<h1><i> </i></h1><br> \n\
";
var Section1Desc23 = "<span class=\"Available\">T1996a2-02</span><br><br>\
This is painting T1996a1 with the digital addition of two sea gulls in the foreground for interest.";
var Section1Purchase23 = "NO";
var Section1Licensing23 = "YES";
var Section1MailLink23 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1996a2-02\" class=\"maillink\">CONTACT US <br>About Painting T1996a2-02 </a>";

var Section1Thumb24 = "day_T1996a3-02_KM_thm_southampton.jpg";
var Section1ThumbOver24 = "day_T1996a3-02_KM_thm_southampton_a.jpg";
var Section1Full24 = "day_T1996a3-02_KM_southampton.jpg";
var Section1Title24 = "<h1><i> </i></h1><br> \n\
";
var Section1Desc24 = "<span class=\"Available\">T1996a3-02</span><br><br>\
This is image T1996a2-02 with the digital addition of a foreground lamp structure to provide further depth, for the 3-D juvenile book <i>Titanic: Ghosts of the Abyss</i>. Using the supplied viewer, the realistic 3D that technicians created is astounding.";
var Section1Purchase24 = "NO";
var Section1Licensing24 = "YES";
var Section1MailLink24 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1996a3-02\" class=\"maillink\">CONTACT US <br>About Painting T1996a3-02 </a>";

var Section1Thumb25 = "day_T1997k_KM_thm.jpg";
var Section1ThumbOver25 = "day_T1997k_KM_thm_a.jpg";
var Section1Full25 = "day_T1997k_KM.jpg";
var Section1Title25 = "<h1><i> </i></h1><br> \n\
<h2>&ldquo;The Millionaires&rsquo; Special&rdquo;</h2>";
var Section1Desc25 = "<span class=\"Available\">T1997k</span><br><br>\
This was first painted in 1974, then improved and updated before publishing in 1998 in the coffee table book <i>Ken Marschall&rsquo;s Art of Titanic</i>. <br><br>Mixed media (acrylic and oil) on stretched canvas <br>24 x 36” (61 x 91.4 cm)";
var Section1Purchase25 = "NO";
var Section1Licensing25 = "YES";
var Section1MailLink25 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1997k\" class=\"maillink\">CONTACT US <br>About Painting T1997k </a>";

var Section1Thumb26 = "day_T1998d_KM_thm.jpg";
var Section1ThumbOver26 = "day_T1998d_KM_thm_a.jpg";
var Section1Full26 = "day_T1998d_KM.jpg";
var Section1Title26 = "<h1><i> </i></h1><br> \n\
<h2>&ldquo;Passage to Eternity&rdquo;</h2>";
var Section1Desc26 = "<span class=\"Available\">T1998d</span><br><br>\
Commissioned as the cover painting for the 1998 coffee table book <i>Ken Marschall&rsquo;s Art of Titanic</i>, this is one of my favorites. <br><br>Acrylic on board <br>approx. <br>20 x 30” (50.8 x 76.2 cm)";
var Section1Purchase26 = "NO";
var Section1Licensing26 = "YES";
var Section1MailLink26 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1998d\" class=\"maillink\">CONTACT US <br>About Painting T1998d </a>";

var Section1Thumb27 = "day_T2002_KM_thm.jpg";
var Section1ThumbOver27 = "day_T2002_KM_thm_a.jpg";
var Section1Full27 = "day_T2002_KM.jpg";
var Section1Title27 = "<h1><i> </i></h1> \n\
";
var Section1Desc27 = "<span class=\"Available\">T2002</span><br><br>\
Impromptu, fanciful sketch of <i>Titanic</i> and <i>QE2</i> together, done during an April 2002 trans-Atlantic voyage on <i>QE2</i> and auctioned on board to benefit the Uniformed Firefighters Association of New York City and the International Association of Firefighters. <br><br>Pencil on heavy card stock <br>12 x 24” (30.5 x 61 cm)";
var Section1Purchase27 = "NO";
var Section1Licensing27 = "YES";
var Section1MailLink27 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T2002\" class=\"maillink\">CONTACT US <br>About Painting T2002 </a>";

var Section1Thumb28 = "day_T2008_KM_thm_southampton.jpg";
var Section1ThumbOver28 = "day_T2008_KM_thm_southampton_a.jpg";
var Section1Full28 = "day_T2008_KM_southampton.jpg";
var Section1Title28 = "<h1><i> </i></h1> \n\
";
var Section1Desc28 = "<span class=\"Available\">T2008</span><br><br>\
<i>Titanic</i>&rsquo;s maiden voyage begins as she rounds the quay at the south end of the White Star Dock shortly after noon on April 10, 1912. Smoke from tugs hidden behind her massive bulk drifts between the funnels in the breeze. This is one of my favorite paintings. <br><br>Acrylic on stretched canvas <br>24 x 48” (61 x 121.9 cm)";
var Section1Purchase28 = "NO";
var Section1Licensing28 = "YES";
var Section1MailLink28 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T2008\" class=\"maillink\">CONTACT US <br>About Painting T2008 </a>";

var Section1Thumb29 = "day_T2009_KM_thm_queenstown.jpg";
var Section1ThumbOver29 = "day_T2009_KM_thm_queenstown_a.jpg";
var Section1Full29 = "day_T2009_KM_queenstown.jpg";
var Section1Title29 = "<h1><i> </i></h1> \n\
";
var Section1Desc29 = "<span class=\"Available\">T2009</span><br><br>\
<i>Titanic</i> has dropped her starboard anchor off Queenstown (now Cobh), Ireland, shortly after 11:30 a.m. on April 11, 1912. The tender <i>America</i> slowly maneuvers toward the open doorway in the ship&rsquo;s port bow while her sister tender, <i>Ireland</i>, approaches at left. <br><br>Acrylic on stretched canvas <br>24 x 48” (61 x 121.9 cm)";
var Section1Purchase29 = "NO";
var Section1Licensing29 = "YES";
var Section1MailLink29 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T2009\" class=\"maillink\">CONTACT US <br>About Painting T2009 </a>";

var Section1Thumb30 = "day_T2010a_KM_thm_sea_trials.jpg";
var Section1ThumbOver30 = "day_T2010a_KM_thm_sea_trials_a.jpg";
var Section1Full30 = "day_T2010a_KM_sea_trials.jpg";
var Section1Title30 = "<h1><i> </i></h1> \n\
";
var Section1Desc30 = "<span class=\"Available\">T2010a</span><br><br>\
At about 7:45 a.m., April 2, 1912, the four tugs guiding <i>Titanic</i> down Victoria Channel have reached deeper water in Belfast Lough and drop their lines, releasing the world&rsquo;s largest ship to move under her own power for the first time. A favorite of mine. <br><br>Acrylic on stretched canvas <br>18 x 36” (45.7 x 91.4 cm)";
var Section1Purchase30 = "NO";
var Section1Licensing30 = "YES";
var Section1MailLink30 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T2010a\" class=\"maillink\">CONTACT US <br>About Painting T2010a </a>";


var Section2Link = "cut.html";
var Section2Count = 19;
var Section2PageCount = 4;

var Section2Title = "cut_title_thm.jpg";
var Section2TitleOver = "cut_title_thm_a.jpg";

var Section2PrevSection = "day_title_thm.jpg";
var Section2PrevSectionOver = "day_title_thm_a.jpg";
var Section2PrevSectionLink = "day.html";

var Section2NextSection = "dawn_title_thm.jpg";
var Section2NextSectionOver = "dawn_title_thm_a.jpg";
var Section2NextSectionLink = "dawn.html";

var Section2Thumb1 = "cut_T1973g_KM_thm_tech.jpg";
var Section2ThumbOver1 = "cut_T1973g_KM_thm_tech_a.jpg";
var Section2Full1 = "cut_T1973g_KM_tech.jpg";
var Section2Title1 = "<h1><i> </i></h1><br> \n\
";
var Section2Desc1 = "<span class=\"Available\">T1973g</span><br><br>\
Starboard profile painting, originally done for myself, then sold. <br><br>Acrylic on masonite <br>24 x 48” (61 x 121.9 cm)";
var Section2Purchase1 = "NO";
var Section2Licensing1 = "YES";
var Section2MailLink1 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1973g\" class=\"maillink\">CONTACT US <br>About Painting T1973g </a>";

var Section2Thumb2 = "cut_T1973h_KM_thm_tech.jpg";
var Section2ThumbOver2 = "cut_T1973h_KM_thm_tech_a.jpg";
var Section2Full2 = "cut_T1973h_KM_tech.jpg";
var Section2Title2 = "<h1><i> </i></h1><br> \n\
";
var Section2Desc2 = "<span class=\"Available\">T1973h</span><br><br>\
Port profile, the matching piece to T1973g, originally painted for the box cover of the then-new 1:350 <i>Titanic</i> model kit produced by Entex Industries in 1973. <br><br>Acrylic on masonite <br>24 x 48” (61 x 121.9 cm)";
var Section2Purchase2 = "NO";
var Section2Licensing2 = "YES";
var Section2MailLink2 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1973h\" class=\"maillink\">CONTACT US <br>About Painting T1973h </a>";

var Section2Thumb3 = "cut_T1988c_KM_thm.jpg";
var Section2ThumbOver3 = "cut_T1988c_KM_thm_a.jpg";
var Section2Full3 = "cut_T1988c_KM.jpg";
var Section2Title3 = "<h1><i> </i></h1><br> \n\
";
var Section2Desc3 = "<span class=\"Available\">T1988c</span><br><br>\
Cutaway of <i>Titanic</i>’s bridge and adjacent area, intended as a then/now comparison with the same area of the wreck as it appeared when discovered in 1985 (see T1988d), for the children’s book <i>Exploring the Titanic</i>. <br><br>Acrylic on masonite mounted to plywood <br>24 x 18” (61 x 45.7 cm)";
var Section2Purchase3 = "YES";
var Section2Licensing3 = "YES";
var Section2MailLink3 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1988c\" class=\"maillink\">CONTACT US <br>About Painting T1988c </a>";

var Section2Thumb4 = "cut_T1992c_KM_thm.jpg";
var Section2ThumbOver4 = "cut_T1992c_KM_thm_a.jpg";
var Section2Full4 = "cut_T1992c_KM.jpg";
var Section2Title4 = "<h1><i> </i></h1><br> \n\
";
var Section2Desc4 = "<span class=\"Available\">T1992c</span><br><br>\
Cutaway of selected areas of the starboard side for the book <i>Titanic: An Illustrated History</i>. This is among the most research intensive and time consuming paintings I’ve ever done. <br><br>Acrylic on board <br>20 x 40” (50.8 x 101.6 cm)";
var Section2Purchase4 = "YES";
var Section2Licensing4 = "YES";
var Section2MailLink4 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1992c\" class=\"maillink\">CONTACT US <br>About Painting T1992c </a>";

var Section2Thumb5 = "cut_T1992d_KM_thm.jpg";
var Section2ThumbOver5 = "cut_T1992d_KM_thm_a.jpg";
var Section2Full5 = "cut_T1992d_KM.jpg";
var Section2Title5 = "<h1><i> </i></h1> \n\
";
var Section2Desc5 = "<span class=\"Available\">T1992d</span><br><br>\
&ldquo;Fisheye&rdquo; view of the Grand Staircase as it would have appeared in the early evening just before dinner, for <i>Titanic: An Illustrated History</i>. This is among the top five most challenging and time-consuming paintings I&rsquo;ve done. <br><br>Acrylic on board <br>21 1/2 x 24 3/4”, <br>(54.6 x 62.9 cm)";
var Section2Purchase5 = "NO";
var Section2Licensing5 = "YES";
var Section2MailLink5 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1992d\" class=\"maillink\">CONTACT US <br>About Painting T1992d </a>";

var Section2Thumb6 = "cut_T1992e-97_KM_thm.jpg";
var Section2ThumbOver6 = "cut_T1992e-97_KM_thm_a.jpg";
var Section2Full6 = "cut_T1992e-97_KM.jpg";
var Section2Title6 = "<h1><i> </i></h1> \n\
";
var Section2Desc6 = "<span class=\"Available\">T1992e-97</span><br><br>\
Showing officers on duty and Quartermaster Hichens at the wheel in the moments before the iceberg was sighted, this was painted and airbrushed over a darkened enlargement of painting T1988c. <br><br>Acrylic on mounted photographic print <br>23 3/4 x 18 1/2” <br>(60.3 x 47 cm)";
var Section2Purchase6 = "YES";
var Section2Licensing6 = "YES";
var Section2MailLink6 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1992e-97\" class=\"maillink\">CONTACT US <br>About Painting T1992e-97 </a>";

var Section2Thumb7 = "cut_T1992h_KM_thm.jpg";
var Section2ThumbOver7 = "cut_T1992h_KM_thm_a.jpg";
var Section2Full7 = "cut_T1992h_KM.jpg";
var Section2Title7 = "<h1><i> </i></h1> \n\
";
var Section2Desc7 = "<span class=\"Available\">T1992h</span><br><br>\
Looking straight down the open well on the starboard side of the forward Grand Staircase, passengers hurry up the stairs to the lifeboats as green sea water begins to flood E Deck, five decks below. Painted for <i>Titanic: An Illustrated History</i>. <br><br>Acrylic on board <br>24 1/2 x 19” <br>(62.2 x 48.3 cm)";
var Section2Purchase7 = "YES";
var Section2Licensing7 = "YES";
var Section2MailLink7 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1992h\" class=\"maillink\">CONTACT US <br>About Painting T1992h </a>";

var Section2Thumb8 = "cut_T1992i_KM_thm.jpg";
var Section2ThumbOver8 = "cut_T1992i_KM_thm_a.jpg";
var Section2Full8 = "cut_T1992i_KM.jpg";
var Section2Title8 = "<h1><i> </i></h1> \n\
";
var Section2Desc8 = "<span class=\"Available\">T1992i</span><br><br>\
In this nightmarish scene, sea water rushes into the forward Grand Staircase as <i>Titanic</i>&rsquo;s bow takes a sudden plunge downward. The oncoming ocean above flows over the skylight housing and crashes through. <br><br>Acrylic on board <br>17 1/2 x 24” (44.5 x 61 cm)";
var Section2Purchase8 = "NO";
var Section2Licensing8 = "YES";
var Section2MailLink8 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1992i\" class=\"maillink\">CONTACT US <br>About Painting T1992i </a>";

var Section2Thumb9 = "cut_T1997a_KM_thm.jpg";
var Section2ThumbOver9 = "cut_T1997a_KM_thm_a.jpg";
var Section2Full9 = "cut_T1997a_KM.jpg";
var Section2Title9 = "<h1><i> </i></h1><br> \n\
";
var Section2Desc9 = "<span class=\"Available\">T1997a</span><br><br>\
Commissioned for the cover of the best-selling children&rsquo;s book <i>Inside the Titanic</i>. The award-winning large-format book, published in numerous languages, features many detailed cutaways of the ship&rsquo;s interior. <br><br>Acrylic on board <br>22 x 16” (55.9 x 40.6 cm)";
var Section2Purchase9 = "YES";
var Section2Licensing9 = "YES";
var Section2MailLink9 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1997a\" class=\"maillink\">CONTACT US <br>About Painting T1997a </a>";

var Section2Thumb10 = "cut_T1997b1_KM_thm.jpg";
var Section2ThumbOver10 = "cut_T1997b1_KM_thm_a.jpg";
var Section2Full10 = "cut_T1997b1_KM.jpg";
var Section2Title10 = "<h1><i> </i></h1> \n\
";
var Section2Desc10 = "<span class=\"Available\">T1997b1</span><br><br>\
Retouched photographic enlargement of painting T1992c, adding the ocean, etc., for the best-selling children&rsquo;s book <i>Inside the Titanic</i>. <br><br>Original acrylic-retouched photographic enlargement as it appears in the book, unmounted <br>12 3/4 x 21” <br>(32.4 x 53.3 cm)";
var Section2Purchase10 = "YES";
var Section2Licensing10 = "NO";
var Section2MailLink10 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1997b1\" class=\"maillink\">CONTACT US <br>About Painting T1997b1 </a>";

var Section2Thumb11 = "cut_T1997b2_KM_thm.jpg";
var Section2ThumbOver11 = "cut_T1997b2_KM_thm_a.jpg";
var Section2Full11 = "cut_T1997b2_KM.jpg";
var Section2Title11 = "<h1><i> </i></h1> \n\
";
var Section2Desc11 = "<span class=\"Available\">T1997b2</span><br><br>\
Digitally updated cutaway view, now showing a distant horizon and many accuracy improvements to image T1997b1 learned since 1997 when it was first published in the book <i>Inside the Titanic</i>.";
var Section2Purchase11 = "NO";
var Section2Licensing11 = "YES";
var Section2MailLink11 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1997b2\" class=\"maillink\">CONTACT US <br>About Painting T1997b2 </a>";

var Section2Thumb12 = "cut_T1997c_KM_thm.jpg";
var Section2ThumbOver12 = "cut_T1997c_KM_thm_a.jpg";
var Section2Full12 = "cut_T1997c_KM.jpg";
var Section2Title12 = "<h1><i> </i></h1> \n\
";
var Section2Desc12 = "<span class=\"Available\">T1997c</span><br><br>\
Cutaway of the stern area, at sea, for the best-selling children&rsquo;s book <i>Inside the Titanic</i>. <br><br>Acrylic-retouched photographic enlargement, unmounted <br>11 1/2 x 20 3/4”  <br>(29.2 x 52.7 cm)";
var Section2Purchase12 = "YES";
var Section2Licensing12 = "YES";
var Section2MailLink12 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1997c\" class=\"maillink\">CONTACT US <br>About Painting T1997c </a>";

var Section2Thumb13 = "cut_T1997d_KM_thm.jpg";
var Section2ThumbOver13 = "cut_T1997d_KM_thm_a.jpg";
var Section2Full13 = "cut_T1997d_KM.jpg";
var Section2Title13 = "<h1><i> </i></h1> \n\
";
var Section2Desc13 = "<span class=\"Available\">T1997d</span><br><br>\
From the Boat Deck down to the Turkish Bath, this reveals some of the more prominent first-class interiors, for the best-selling children&rsquo;s book <i>Inside the Titanic</i>. <br><br>Acrylic-retouched photographic enlargement, mounted <br>24 x 19 1/2”  (61 x 48 cm)";
var Section2Purchase13 = "YES";
var Section2Licensing13 = "YES";
var Section2MailLink13 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1997d\" class=\"maillink\">CONTACT US <br>About Painting T1997d </a>";

var Section2Thumb14 = "cut_T1997e_KM_thm.jpg";
var Section2ThumbOver14 = "cut_T1997e_KM_thm_a.jpg";
var Section2Full14 = "cut_T1997e_KM.jpg";
var Section2Title14 = "<h1><i> </i></h1> \n\
";
var Section2Desc14 = "<span class=\"Available\">T1997e</span><br><br>\
From the elegant lounge to the gritty boiler rooms, this cutaway also shows the pantry, parts of the first- and third-class dining rooms and adjacent areas for the book <i>Inside the Titanic</i>. <br><br>Acrylic-retouched photographic enlargement, unmounted <br>14 3/4 x 17 3/4”  <br>(37.5 x 44.9 cm)";
var Section2Purchase14 = "YES";
var Section2Licensing14 = "YES";
var Section2MailLink14 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1997e\" class=\"maillink\">CONTACT US <br>About Painting T1997e </a>";

var Section2Thumb15 = "cut_T1997f_KM_thm.jpg";
var Section2ThumbOver15 = "cut_T1997f_KM_thm_a.jpg";
var Section2Full15 = "cut_T1997f_KM.jpg";
var Section2Title15 = "<h1><i> </i></h1> \n\
";
var Section2Desc15 = "<span class=\"Available\">T1997f</span><br><br>\
A few B-deck suites on the starboard side, occupied by the William Carter party, for the best-selling children&rsquo;s book <i>Inside the Titanic</i>. <br><br>Acrylic retouching on an enlargement of a reversed part of painting T1992c, unmounted <br>7 1/8 x 8 1/4”  <br>(18.1 x 21 cm)";
var Section2Purchase15 = "YES";
var Section2Licensing15 = "YES";
var Section2MailLink15 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1997f\" class=\"maillink\">CONTACT US <br>About Painting T1997f </a>";

var Section2Thumb16 = "cut_T1997g_KM_thm.jpg";
var Section2ThumbOver16 = "cut_T1997g_KM_thm_a.jpg";
var Section2Full16 = "cut_T1997g_KM.jpg";
var Section2Title16 = "<h1><i> </i></h1> \n\
";
var Section2Desc16 = "<span class=\"Available\">T1997g</span><br><br>\
Cutaway view of a few suites on B and C decks for the children&rsquo;s book <i>Inside the Titanic</i>. The painted insert was digitally positioned over the daytime scene T1996a1. <br><br>Acrylic on Mylar mounted to board <br>8 1/2 x 8 1/2” <br>(21.6 x 21.6 cm)";
var Section2Purchase16 = "YES";
var Section2Licensing16 = "YES";
var Section2MailLink16 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1997g\" class=\"maillink\">CONTACT US <br>About Painting T1997g </a>";

var Section2Thumb17 = "cut_T1997h_KM_thm.jpg";
var Section2ThumbOver17 = "cut_T1997h_KM_thm_a.jpg";
var Section2Full17 = "cut_T1997h_KM.jpg";
var Section2Title17 = "<h1><i> </i></h1> \n\
";
var Section2Desc17 = "<span class=\"Available\">T1997h</span><br><br>\
Cutaway showing a portion of the third-class and cargo areas, port side forward, with the new Renault automobile being shipped by first-class passenger William Carter. <br><br>Acrylic retouching on an enlargement of a reversed part of painting T1992c, unmounted <br>7 1/8 x 8 1/4”  (18.1 x 21 cm)";
var Section2Purchase17 = "YES";
var Section2Licensing17 = "YES";
var Section2MailLink17 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1997h\" class=\"maillink\">CONTACT US <br>About Painting T1997h </a>";

var Section2Thumb18 = "cut_T1997i_KM_thm.jpg";
var Section2ThumbOver18 = "cut_T1997i_KM_thm_a.jpg";
var Section2Full18 = "cut_T1997i_KM.jpg";
var Section2Title18 = "<h1><i> </i></h1> \n\
";
var Section2Desc18 = "<span class=\"Available\">T1997i</span><br><br>\
<i>Titanic</i> strikes the ice, with a cutaway showing boiler room No. 6, ballast tanks and double bottom for the best-selling children&rsquo;s book <i>Inside the Titanic</i>. <br><br>Acrylic retouching of a darkened photographic enlargement of cutaway T1997a, unmounted <br>19 3/4 x 17 3/4” <br>(50.1 x 45 cm)";
var Section2Purchase18 = "YES";
var Section2Licensing18 = "YES";
var Section2MailLink18 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1997i\" class=\"maillink\">CONTACT US <br>About Painting T1997i </a>";

var Section2Thumb19 = "cut_T1997j_KM_thm.jpg";
var Section2ThumbOver19 = "cut_T1997j_KM_thm_a.jpg";
var Section2Full19 = "cut_T1997j_KM.jpg";
var Section2Title19 = "<h1><i> </i></h1> \n\
";
var Section2Desc19 = "<span class=\"Available\">T1997j</span><br><br>\
Cutaway showing the Grand Staircase and spaces below it, including linen lockers and coal bunkers, as they might have appeared during the sinking, for the book <i>Inside the Titanic</i>. <br><br>Acrylic retouching on a photographic enlargement of part of T1982a, unmounted, <br>16 x 20 1/2” <br>(40.7 x 52.2 cm)";
var Section2Purchase19 = "YES";
var Section2Licensing19 = "YES";
var Section2MailLink19 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1997j\" class=\"maillink\">CONTACT US <br>About Painting T1997j </a>";


var Section3Link = "dawn.html";
var Section3Count = 15;
var Section3PageCount = 4;

var Section3Title = "dawn_title_thm.jpg";
var Section3TitleOver = "dawn_title_thm_a.jpg";

var Section3PrevSection = "cut_title_thm.jpg";
var Section3PrevSectionOver = "cut_title_thm_a.jpg";
var Section3PrevSectionLink = "cut.html";

var Section3NextSection = "night_title_thm.jpg";
var Section3NextSectionOver = "night_title_thm_a.jpg";
var Section3NextSectionLink = "night.html";

var Section3Thumb1 = "dawn_T1971e_KM_thm.jpg";
var Section3ThumbOver1 = "dawn_T1971e_KM_thm_a.jpg";
var Section3Full1 = "dawn_T1971e_KM.jpg";
var Section3Title1 = "<h1><i> </i></h1> \n\
<h2>&ldquo;<i>Titanic</i> Dream&rdquo;</h2>";
var Section3Desc1 = "<span class=\"Available\">T1971e</span><br><br>\
Maquette for &ldquo;<i>Titanic</i> Dream&rdquo;. One night I dreamed that I was walking through a gallery and came upon a foreboding scene in fiery vermillion hues. Then I noticed with surprise that the painting was signed by myself. <br><br>Acrylic on paper, <br>3 x 6 3/4” (7.6 x 17.1 cm)";
var Section3Purchase1 = "NO";
var Section3Licensing1 = "YES";
var Section3MailLink1 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1971e\" class=\"maillink\">CONTACT US <br>About Painting T1971e </a>";

var Section3Thumb2 = "dawn_T1971f_KM_thm.jpg";
var Section3ThumbOver2 = "dawn_T1971f_KM_thm_a.jpg";
var Section3Full2 = "dawn_T1971f_KM.jpg";
var Section3Title2 = "<h1><i> </i></h1> \n\
<h2>&ldquo;<i>Titanic</i> Dream&rdquo;</h2>";
var Section3Desc2 = "<span class=\"Available\">T1971f</span><br><br>\
The final, full-sized artwork, (see T1971e) based on a vivid dream I had had. I painted it for myself, then sold it years later. <br><br>Acrylic on canvas board <br>15 x 30” (38.1 x 76.2 cm)";
var Section3Purchase2 = "NO";
var Section3Licensing2 = "YES";
var Section3MailLink2 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1971f\" class=\"maillink\">CONTACT US <br>About Painting T1971f </a>";

var Section3Thumb3 = "dawn_T1972c_KM_thm_carpathia.jpg";
var Section3ThumbOver3 = "dawn_T1972c_KM_thm_carpathia_a.jpg";
var Section3Full3 = "dawn_T1972c_KM_carpathia.jpg";
var Section3Title3 = "<h1><i> </i></h1><br> \n\
<h2>&ldquo;The Arrival of the Rescue Ship, Dawn, April 15, 1912&rdquo;</h2>";
var Section3Desc3 = "<span class=\"Available\">T1972c</span><br><br>\
Emergency lifeboat No. 2, commanded by Fourth Officer Joseph Boxhall (holding flare), is the first boat picked up by the Cunard liner <i>Carpathia</i>. <br><br>Acrylic on stretched canvas <br>24 x 48” (61 x 121.9 cm)";
var Section3Purchase3 = "NO";
var Section3Licensing3 = "YES";
var Section3MailLink3 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1972c\" class=\"maillink\">CONTACT US <br>About Painting T1972c </a>";

var Section3Thumb4 = "dawn_T1973b_KM_thm.jpg";
var Section3ThumbOver4 = "dawn_T1973b_KM_thm_a.jpg";
var Section3Full4 = "dawn_T1973b_KM.jpg";
var Section3Title4 = "<h1><i> </i></h1><br> \n\
<h2>&ldquo;First Dawn&rdquo;</h2>";
var Section3Desc4 = "<span class=\"Available\">T1973b</span><br><br>\
Depicts <i>Titanic</i> as she enters Belfast Lough, Ireland, on the morning of her sea trials, April 2, 1912. Originally done for myself, then later sold. <br><br>Acrylic on stretched canvas <br>18 x 24” (45.7 x 61 cm)";
var Section3Purchase4 = "NO";
var Section3Licensing4 = "YES";
var Section3MailLink4 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1973b\" class=\"maillink\">CONTACT US <br>About Painting T1973b </a>";

var Section3Thumb5 = "dawn_T1974b_KM_thm.jpg";
var Section3ThumbOver5 = "dawn_T1974b_KM_thm_a.jpg";
var Section3Full5 = "dawn_T1974b_KM.jpg";
var Section3Title5 = "<h1><i> </i></h1> \n\
<h2>&ldquo;On to Oblivion&rdquo;</h2>";
var Section3Desc5 = "<span class=\"Available\">T1974b</span><br><br>\
<i>Titanic</i> sails westward into history. <br><br>Acrylic on stretched canvas <br>18 x 24” (45.7 x 61 cm)";
var Section3Purchase5 = "NO";
var Section3Licensing5 = "YES";
var Section3MailLink5 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1974b\" class=\"maillink\">CONTACT US <br>About Painting T1974b </a>";

var Section3Thumb6 = "dawn_T1974f1_KM_thm.jpg";
var Section3ThumbOver6 = "dawn_T1974f1_KM_thm_a.jpg";
var Section3Full6 = "dawn_T1974f1_KM.jpg";
var Section3Title6 = "<h1><i> </i></h1> \n\
<h2>&ldquo;The Last Hail&rdquo;</h2>";
var Section3Desc6 = "<span class=\"Available\">T1974f1</span><br><br>\
Men in small boats wave goodbye as <i>Titanic</i> sails into the setting sun off the southwest coast of Ireland, April 11, 1912. This has always been one of my favorites. <br><br>Acrylic on stretched canvas <br>18 x 24” (45.7 x 61 cm)";
var Section3Purchase6 = "NO";
var Section3Licensing6 = "YES";
var Section3MailLink6 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1974f1\" class=\"maillink\">CONTACT US <br>About Painting T1974f1 </a>";

var Section3Thumb7 = "dawn_T1974f2-06_KM_thm.jpg";
var Section3ThumbOver7 = "dawn_T1974f2-06_KM_thm_a.jpg";
var Section3Full7 = "dawn_T1974f2-06_KM.jpg";
var Section3Title7 = "<h1><i> </i></h1> \n\
";
var Section3Desc7 = "<span class=\"Available\">T1974f2-06</span><br><br>\
This is painting T1974f1 flopped (reversed) and digitally altered in 2006 to make windows and other details accurate for a portside view, with new water and a gull added in the foreground.";
var Section3Purchase7 = "NO";
var Section3Licensing7 = "YES";
var Section3MailLink7 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1974f2-06\" class=\"maillink\">CONTACT US <br>About Painting T1974f2-06 </a>";

var Section3Thumb8 = "dawn_T1974f3-06_KM_thm.jpg";
var Section3ThumbOver8 = "dawn_T1974f3-06_KM_thm_a.jpg";
var Section3Full8 = "dawn_T1974f3-06_KM.jpg";
var Section3Title8 = "<h1><i> </i></h1> \n\
";
var Section3Desc8 = "<span class=\"Available\">T1974f3-06</span><br><br>\
Image T1974f2-06 without the gull.";
var Section3Purchase8 = "NO";
var Section3Licensing8 = "YES";
var Section3MailLink8 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1974f3-06\" class=\"maillink\">CONTACT US <br>About Painting T1974f3-06 </a>";

var Section3Thumb9 = "dawn_T1975a_KM_thm.jpg";
var Section3ThumbOver9 = "dawn_T1975a_KM_thm_a.jpg";
var Section3Full9 = "dawn_T1975a_KM.jpg";
var Section3Title9 = "<h1><i> </i></h1> \n\
";
var Section3Desc9 = "<span class=\"Available\">T1975a</span><br><br>\
One of my favorite sunset scenes. Painting the flaming sky went easily and turned out just as I wanted. <br><br>Acrylic on stretched canvas <br>19 3/4 x 30 1/2” <br>(50.2 x 77.5 cm)";
var Section3Purchase9 = "NO";
var Section3Licensing9 = "YES";
var Section3MailLink9 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1975a\" class=\"maillink\">CONTACT US <br>About Painting T1975a </a>";

var Section3Thumb10 = "dawn_T1976d_KM_thm.jpg";
var Section3ThumbOver10 = "dawn_T1976d_KM_thm_a.jpg";
var Section3Full10 = "dawn_T1976d_KM.jpg";
var Section3Title10 = "<h1><i> </i></h1> \n\
<h2>&ldquo;Past the Headlands of the West&rdquo;</h2>";
var Section3Desc10 = "<span class=\"Available\">T1976d</span><br><br>\
The client titled this one showing <i>Titanic</i> as she leaves the far western reaches of Ireland behind. <br><br>Acrylic on stretched canvas <br>18 x 24” (45.7 x 61 cm)";
var Section3Purchase10 = "NO";
var Section3Licensing10 = "YES";
var Section3MailLink10 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1976d\" class=\"maillink\">CONTACT US <br>About Painting T1976d </a>";

var Section3Thumb11 = "dawn_T1977b1_KM_thm.jpg";
var Section3ThumbOver11 = "dawn_T1977b1_KM_thm_a.jpg";
var Section3Full11 = "dawn_T1977b1_KM.jpg";
var Section3Title11 = "<h1><i> </i></h1> \n\
";
var Section3Desc11 = "<span class=\"Available\">T1977b1</span><br><br>\
Small maquette to show a client roughly how his painting (T1977b2) would appear. <br><br>Acrylic on board <br>approx. 4 1/2 x 6” <br>(11.4 x 15.2 cm)";
var Section3Purchase11 = "NO";
var Section3Licensing11 = "NO";
var Section3MailLink11 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1977b1\" class=\"maillink\">CONTACT US A<br>About Painting T1977b1 </a>";

var Section3Thumb12 = "dawn_T1977b2_KM_thm.jpg";
var Section3ThumbOver12 = "dawn_T1977b2_KM_thm_a.jpg";
var Section3Full12 = "dawn_T1977b2_KM.jpg";
var Section3Title12 = "<h1><i> </i></h1> \n\
<h2>&ldquo;Au Revoir to the <br>Old World&rdquo;</h2>";
var Section3Desc12 = "<span class=\"Available\">T1977b2</span><br><br>\
<i>Titanic</i>’s anchorage in Cherbourg harbor in the early evening of April 10, 1912, with the new White Star Line tenders <i>Nomadic</i> and <i>Traffic</i> in the scene. <br><br>Acrylic on stretched canvas <br>24 x 36” (61 x 91.4 cm)";
var Section3Purchase12 = "NO";
var Section3Licensing12 = "YES";
var Section3MailLink12 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1977b2\" class=\"maillink\">CONTACT US <br>About Painting T1977b2 </a>";

var Section3Thumb13 = "dawn_T1992b_KM_thm.jpg";
var Section3ThumbOver13 = "dawn_T1992b_KM_thm_a.jpg";
var Section3Full13 = "dawn_T1992b_KM.jpg";
var Section3Title13 = "<h1><i> </i></h1> \n\
<h2>&ldquo;The Final Encounter&rdquo;</h2>";
var Section3Desc13 = "<span class=\"Available\">T1992b</span><br><br>\
Near sunset on April 3, 1912, <i>Titanic</i> passes her sister ship <i>Olympic</i> off Portland on the south coast of England, as reported in an English newspaper of the time. It would be their only passing at sea. <br><br>Acrylic on board <br>18 x 30” (45.7 x 76.2 cm)";
var Section3Purchase13 = "YES";
var Section3Licensing13 = "YES";
var Section3MailLink13 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1992b\" class=\"maillink\">CONTACT US <br>About Painting T1992b </a>";

var Section3Thumb14 = "dawn_T1992k_KM_thm_carpathia.jpg";
var Section3ThumbOver14 = "dawn_T1992k_KM_thm_carpathia_a.jpg";
var Section3Full14 = "dawn_T1992k_KM_carpathia.jpg";
var Section3Title14 = "<h1><i> </i></h1> \n\
";
var Section3Desc14 = "<span class=\"Available\">T1992k</span><br><br>\
The Cunard ship <i>Carpathia</i> arrives at dawn, April 15, 1912, to rescue the survivors of the disaster. <i>Titanic</i>&rsquo;s Third Officer Herbert Pitman stands at the tiller of lifeboat No. 5. <br><br>Acrylic on board <br>approx. 18 x 26” <br>(45.7 x 66 cm)";
var Section3Purchase14 = "NO";
var Section3Licensing14 = "YES";
var Section3MailLink14 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1992k\" class=\"maillink\">CONTACT US <br>About Painting T1992k </a>";

var Section3Thumb15 = "dawn_T2007_KM_thm.jpg";
var Section3ThumbOver15 = "dawn_T2007_KM_thm_a.jpg";
var Section3Full15 = "dawn_T2007_KM.jpg";
var Section3Title15 = "<h1><i> </i></h1> \n\
";
var Section3Desc15 = "<span class=\"Available\">T2007</span><br><br>\
Just before sunset on April 10, 1912, <i>Titanic</i> passes the Fort de l&rsquo;Ouest (western fort), entering the Grande Rade (or &ldquo;Roadstead&rdquo;), the larger, outer harbor at Cherbourg, France, <i>Titanic</i>&rsquo;s first port of call on her maiden voyage. <br><br>Acrylic on stretched canvas <br>24 x 48” (61 x 121.9 cm)";
var Section3Purchase15 = "NO";
var Section3Licensing15 = "YES";
var Section3MailLink15 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T2007\" class=\"maillink\">CONTACT US <br>About Painting T2007 </a>";


var Section4Link = "night.html";
var Section4Count = 28;
var Section4PageCount = 6;

var Section4Title = "night_title_thm.jpg";
var Section4TitleOver = "night_title_thm_a.jpg";

var Section4PrevSection = "dawn_title_thm.jpg";
var Section4PrevSectionOver = "dawn_title_thm_a.jpg";
var Section4PrevSectionLink = "dawn.html";

var Section4NextSection = "wreckage_title_thm.jpg";
var Section4NextSectionOver = "wreckage_title_thm_a.jpg";
var Section4NextSectionLink = "wreck.html";

var Section4Thumb1 = "night_T1970a_KM_thm.jpg";
var Section4ThumbOver1 = "night_T1970a_KM_thm_a.jpg";
var Section4Full1 = "night_T1970a_KM.jpg";
var Section4Title1 = "<h1><i> </i></h1><br> \n\
<h2>&ldquo;Approaching the End of an Era&rdquo;</h2>";
var Section4Desc1 = "<span class=\"Available\">T1970a</span><br><br>\
I did this for myself. As an amateur astronomer I took pains to figure out the stars and planets for that latitude, longitude, date and time. <br>I later sold it.<br><br>Acrylic on canvas board<br>16 x 20&rdquo; (40.6 x 50.8 cm)";
var Section4Purchase1 = "NO";
var Section4Licensing1 = "YES";
var Section4MailLink1 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1970a\" class=\"maillink\">CONTACT US <br>About Painting T1970a </a>";

var Section4Thumb2 = "night_T1971a_KM_thm.jpg";
var Section4ThumbOver2 = "night_T1971a_KM_thm_a.jpg";
var Section4Full2 = "night_T1971a_KM.jpg";
var Section4Title2 = "<h1><i> </i></h1><br> \n\
<h2>&ldquo;R.M.S. <i>Titanic</i>, 11:40 p.m., April 14, 1912&rdquo;</h2>";
var Section4Desc2 = "<span class=\"Available\">T1971a</span><br><br>\
This earliest attempt at illustrating the collision with the iceberg was painted for myself, then given away years later.<br><br>Acrylic on canvas board<br>16 x 20&rdquo; (40.6 x 50.8 cm)";
var Section4Purchase2 = "NO";
var Section4Licensing2 = "YES";
var Section4MailLink2 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1971a\" class=\"maillink\">CONTACT US <br>About Painting T1971a </a>";

var Section4Thumb3 = "night_T1971b_KM_thm_sinking.jpg";
var Section4ThumbOver3 = "night_T1971b_KM_thm_sinking_a.jpg";
var Section4Full3 = "night_T1971b_KM_sinking.jpg";
var Section4Title3 = "<h1><i> </i></h1> \n\
<h2>&ldquo;The Passing of <br>an Era&rdquo;</h2>";
var Section4Desc3 = "<span class=\"Available\">T1971b</span><br><br>\
Painted for myself, this was a favorite of mine for a long time. I sold it a few years later. <br><br>Acrylic on canvas board <br>16 x 20” (40.6 x 50.8 cm)";
var Section4Purchase3 = "NO";
var Section4Licensing3 = "YES";
var Section4MailLink3 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1971b\" class=\"maillink\">CONTACT US <br>About Painting T1971b </a>";

var Section4Thumb4 = "night_T1971c_KM_thm.jpg";
var Section4ThumbOver4 = "night_T1971c_KM_thm_a.jpg";
var Section4Full4 = "night_T1971c_KM.jpg";
var Section4Title4 = "<h1><i> </i></h1> \n\
<h2>&ldquo;Nearing the Ice Field (I)&rdquo;</h2>";
var Section4Desc4 = "<span class=\"Available\">T1971c</span><br><br>\
It&rsquo;s about 11:35 p.m. ship’s time, moments from when the lookouts would sight the iceberg. Painted for myself, then later sold. <br><br>Acrylic on canvas board <br>16 x 20” (40.6 x 50.8 cm)";
var Section4Purchase4 = "NO";
var Section4Licensing4 = "YES";
var Section4MailLink4 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1971c\" class=\"maillink\">CONTACT US <br>About Painting T1971c </a>";


var Section4Thumb5 = "night_T1971d_KM_thm.jpg";
var Section4ThumbOver5 = "night_T1971d_KM_thm_a.jpg";
var Section4Full5 = "night_T1971d_KM.jpg";
var Section4Title5 = "<h1><i> </i></h1> \n\
<h2>&ldquo;Nearing the Ice Field (II)&rdquo;</h2>";
var Section4Desc5 = "<span class=\"Available\">T1971d</span><br><br>\
Painted for myself to improve on the accuracy of the previous version (see T1971c), this scene shows the stars and Jupiter in the southeast positioned more correctly for 11:35 p.m. ship&rsquo;s time. <br><br>Acrylic on canvas board <br>16 x 20” (40.6 x 50.8 cm)";
var Section4Purchase5 = "NO";
var Section4Licensing5 = "YES";
var Section4MailLink5 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1971d\" class=\"maillink\">CONTACT US <br>About Painting T1971d </a>";

var Section4Thumb6 = "night_T1972e_KM_thm_sinking.jpg";
var Section4ThumbOver6 = "night_T1972e_KM_thm_sinking_a.jpg";
var Section4Full6 = "night_T1972e_KM_sinking.jpg";
var Section4Title6 = "<h1><i> </i></h1><br> \n\
<h2>&ldquo;The Impossible Tragedy&rdquo;</h2>";
var Section4Desc6 = "<span class=\"Available\">T1972e</span><br><br>\
Lifeboat No. 14 is in the foreground as <i>Titanic</i>&rsquo;s stern angles ever higher, the ship&rsquo;s lights incredibly still blazing. Inspired by a view in the 1953 Fox movie &rdquo;Titanic.&rdquo; <br><br>Acrylic on stretched canvas <br>24 x 20” (61 x 50.8 cm)";
var Section4Purchase6 = "NO";
var Section4Licensing6 = "YES";
var Section4MailLink6 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1972e\" class=\"maillink\">CONTACT US <br>About Painting T1972e </a>";

var Section4Thumb7 = "night_T1973e_KM_thm.jpg";
var Section4ThumbOver7 = "night_T1973e_KM_thm_a.jpg";
var Section4Full7 = "night_T1973e_KM.jpg";
var Section4Title7 = "<h1><i> </i></h1> \n\
<h2>&ldquo;Rendezvous with Destiny&rdquo;</h2>";
var Section4Desc7 = "<span class=\"Available\">T1973e</span><br><br>\
Commissioned for the cover of a CBC/Smithsonian record album produced by the Vantage Recording Co. in 1973. The recording was originally aired in 1972 by the CBC. <br><br>Acrylic on stretched canvas <br>18 x 24” (45.7 x 61 cm)";
var Section4Purchase7 = "NO";
var Section4Licensing7 = "NO";
var Section4MailLink7 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1973e\" class=\"maillink\">CONTACT US <br>About Painting T1973e </a>";

var Section4Thumb8 = "night_T1974a_KM_thm_sinking.jpg";
var Section4ThumbOver8 = "night_T1974a_KM_thm_sinking_a.jpg";
var Section4Full8 = "night_T1974a_KM_sinking.jpg";
var Section4Title8 = "<h1><i> </i></h1> \n\
<h2>&ldquo;CQD-MGY&rdquo;</h2>";
var Section4Desc8 = "<span class=\"Available\">T1974a</span><br><br>\
At about 12:45 a.m. the first lifeboats are being loaded and the first distress rocket is launched. One of my favorites. <br><br>Acrylic on stretched canvas <br>16 x 20” (40.6 x 50.8 cm)";
var Section4Purchase8 = "NO";
var Section4Licensing8 = "YES";
var Section4MailLink8 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1974a\" class=\"maillink\">CONTACT US <br>About Painting T1974a </a>";

var Section4Thumb9 = "night_T1974h_KM_thm_sinking.jpg";
var Section4ThumbOver9 = "night_T1974h_KM_thm_sinking_a.jpg";
var Section4Full9 = "night_T1974h_KM_sinking.jpg";
var Section4Title9 = "<h1><i> </i></h1> \n\
<h2>&ldquo;Awaiting the End&rdquo;</h2>";
var Section4Desc9 = "<span class=\"Available\">T1974h</span><br><br>\
At about 2:15 a.m. helpless survivors watch in horror as desperate passengers and crew crowd <i>Titanic</i>&rsquo;s stern just before the lights go out and the hull tears apart. <br><br>Acrylic on stretched canvas <br>16 x 20” (40.6 x 50.8 cm)";
var Section4Purchase9 = "NO";
var Section4Licensing9 = "YES";
var Section4MailLink9 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1974h\" class=\"maillink\">CONTACT US <br>About Painting T1974h </a>";

var Section4Thumb10 = "night_T1976a_KM_thm_sinking.jpg";
var Section4ThumbOver10 = "night_T1976a_KM_thm_sinking_a.jpg";
var Section4Full10 = "night_T1976a_KM_sinking.jpg";
var Section4Title10 = "<h1><i> </i></h1> \n\
<h2>&ldquo;The Sea Hath Spoken&rdquo;</h2>";
var Section4Desc10 = "<span class=\"Available\">T1976a</span><br><br>\
The rate of sinking quickens as <i>Titanic</i>&rsquo;s forward well deck begins to flood. Engelhardt collapsible <br>boat D and lifeboat No. 4 are loaded. Boat No. 6 is in the foreground. <br><br>Acrylic on stretched canvas <br>24 x 18” (61 x 45.7 cm)";
var Section4Purchase10 = "NO";
var Section4Licensing10 = "YES";
var Section4MailLink10 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1976a\" class=\"maillink\">CONTACT US <br>About Painting T1976a </a>";

var Section4Thumb11 = "night_T1978a-92_KM_thm.jpg";
var Section4ThumbOver11 = "night_T1978a-92_KM_thm_a.jpg";
var Section4Full11 = "night_T1978a-92_KM.jpg";
var Section4Title11 = "<h1><i> </i></h1> \n\
";
var Section4Desc11 = "<span class=\"Available\">T1978a</span><br><br>\
Originally done in 1978 for a record album cover, this painting showing the iceberg collision was updated and improved in 1992 for publication in the book <i>Titanic: An Illustrated History</i>. <br><br>Acrylic on stretched canvas <br>16 x 20” (40.6 x 50.8 cm)";
var Section4Purchase11 = "NO";
var Section4Licensing11 = "YES";
var Section4MailLink11 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1978a\" class=\"maillink\">CONTACT US <br>About Painting T1978a </a>";

var Section4Thumb12 = "night_T1980a2_KM_thm.jpg";
var Section4ThumbOver12 = "night_T1980a2_KM_thm_a.jpg";
var Section4Full12 = "night_T1980a2_KM.jpg";
var Section4Title12 = "<h1><i> </i></h1> \n\
";
var Section4Desc12 = "<span class=\"Available\">T1980a2</span><br><br>\
Final, fanciful cover painting commissioned for the book <i>The Titanic, The Psychic and the Sea</i>. <br><br>Acrylic on masonite <br>approx. 16 x 12” <br>(40.6 x 30.5 cm)";
var Section4Purchase12 = "NO";
var Section4Licensing12 = "NO";
var Section4MailLink12 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1980a2\" class=\"maillink\">CONTACT US <br>About Painting T1980a2 </a>";

var Section4Thumb13 = "night_T1982a_KM_thm_sinking.jpg";
var Section4ThumbOver13 = "night_T1982a_KM_thm_sinking_a.jpg";
var Section4Full13 = "night_T1982a_KM_sinking.jpg";
var Section4Title13 = "<h1><i> </i></h1> \n\
";
var Section4Desc13 = "<span class=\"Available\">T1982a</span><br><br>\
The last lifeboats are being loaded, and the forward well deck has flooded, signaling that the end is near. <br><br>Acrylic on stretched canvas <br>24 x 48” (61 x 121.9 cm)";
var Section4Purchase13 = "NO";
var Section4Licensing13 = "YES";
var Section4MailLink13 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1982a\" class=\"maillink\">CONTACT US <br>About Painting T1982a </a>";

var Section4Thumb14 = "night_T1982c_KM_thm_sinking.jpg";
var Section4ThumbOver14 = "night_T1982c_KM_thm_sinking_a.jpg";
var Section4Full14 = "night_T1982c_KM_sinking.jpg";
var Section4Title14 = "<h1><i> </i></h1> \n\
";
var Section4Desc14 = "<span class=\"Available\">T1982c</span><br><br>\
As lifeboat No. 16 is rowed away (foreground), <i>Titanic</i>’s stern lifts ever higher. Later published on the cover of the children&rsquo;s book <i>On Board the Titanic</i>. <br><br>Acrylic on stretched canvas <br>18 x 24” (45.7 x 61 cm)";
var Section4Purchase14 = "NO";
var Section4Licensing14 = "YES";
var Section4MailLink14 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1982c\" class=\"maillink\">CONTACT US <br>About Painting T1982c </a>";

var Section4Thumb15 = "night_T1988f_KM_thm.jpg";
var Section4ThumbOver15 = "night_T1988f_KM_thm_a.jpg";
var Section4Full15 = "night_T1988f_KM.jpg";
var Section4Title15 = "<h1><i> </i></h1> \n\
<h2>&ldquo;Deadly Encounter&rdquo;</h2>";
var Section4Desc15 = "<span class=\"Available\">T1988f</span><br><br>\
<i>Titanic</i> moves swiftly into a dangerous ice field. Painted to illustrate the dust jacket of the book <i>Titanic: Psychic Forewarnings of a Tragedy</i>.  <br><br>Acrylic on board <br>16 1/2 x 25” (41.9 x 63.5 cm)";
var Section4Purchase15 = "NO";
var Section4Licensing15 = "YES";
var Section4MailLink15 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1988f\" class=\"maillink\">CONTACT US <br>About Painting T1988f </a>";

var Section4Thumb16 = "night_T1992f_KM_thm.jpg";
var Section4ThumbOver16 = "night_T1992f_KM_thm_a.jpg";
var Section4Full16 = "night_T1992f_KM.jpg";
var Section4Title16 = "<h1><i> </i></h1> \n\
<h2>&ldquo;Hard a&rsquo;Starboard!&rdquo;</h2>";
var Section4Desc16 = "<span class=\"Available\">T1992f</span><br><br>\
Three sharp clangs ring from the crow&rsquo;s nest bell. First Officer Murdoch sees the oncoming danger himself and shouts to Quartermaster Hichens at the wheel, inside the wheelhouse. Painted for <i>Titanic: An Illustrated History</i>. <br><br>Acrylic on board <br>20 1/2 x 25” (52 x 63.5 cm)";
var Section4Purchase16 = "NO";
var Section4Licensing16 = "YES";
var Section4MailLink16 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1992f\" class=\"maillink\">CONTACT US <br>About Painting T1992f </a>";

var Section4Thumb17 = "night_T1992g_KM_thm_sinking.jpg";
var Section4ThumbOver17 = "night_T1992g_KM_thm_sinking_a.jpg";
var Section4Full17 = "night_T1992g_KM_sinking.jpg";
var Section4Title17 = "<h1><i> </i></h1> \n\
";
var Section4Desc17 = "<span class=\"Available\">T1992g</span><br><br>\
At about 12:25 a.m. the first lifeboat to be launched (No. 7) creaks jerkily down <i>Titanic</i>&rsquo;s starboard side toward the frigid sea as bemused passengers watch from above. Painted for <i>Titanic: An Illustrated History</i>. <br><br>Acrylic on board <br>24 1/4 x 18” (61.6 x 45.7 cm)";
var Section4Purchase17 = "NO";
var Section4Licensing17 = "YES";
var Section4MailLink17 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1992g\" class=\"maillink\">CONTACT US <br>About Painting T1992g </a>";

var Section4Thumb18 = "night_T1992h_KM_thm_sinking.jpg";
var Section4ThumbOver18 = "night_T1992h_KM_thm_sinking_a.jpg";
var Section4Full18 = "night_T1992h_KM_sinking.jpg";
var Section4Title18 = "<h1><i> </i></h1> \n\
";
var Section4Desc18 = "<span class=\"Available\">T1992h</span><br><br>\
Looking straight down the open well on the starboard side of the forward Grand Staircase, passengers hurry up the stairs to the lifeboats as green sea water begins to flood E Deck, five decks below. Painted for <i>Titanic: An Illustrated History</i>. <br><br>Acrylic on board <br>24 1/2 x 19” <br>(62.2 x 48.3 cm)";
var Section4Purchase18 = "YES";
var Section4Licensing18 = "YES";
var Section4MailLink18 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1992h\" class=\"maillink\">CONTACT US <br>About Painting T1992h </a>";

var Section4Thumb19 = "night_T1992i_KM_thm_sinking.jpg";
var Section4ThumbOver19 = "night_T1992i_KM_thm_sinking_a.jpg";
var Section4Full19 = "night_T1992i_KM_sinking.jpg";
var Section4Title19 = "<h1><i> </i></h1> \n\
";
var Section4Desc19 = "<span class=\"Available\">T1992i</span><br><br>\
In this nightmarish scene, sea water rushes into the forward Grand Staircase as <i>Titanic</i>&rsquo;s bow takes a sudden plunge downward. The oncoming ocean above flows over the skylight housing and crashes through. <br><br>Acrylic on board <br>17 1/2 x 24” (44.5 x 61 cm)";
var Section4Purchase19 = "NO";
var Section4Licensing19 = "YES";
var Section4MailLink19 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1992i\" class=\"maillink\">CONTACT US <br>About Painting T1992i </a>";

var Section4Thumb20 = "night_T1992j1_KM_thm_sinking.jpg";
var Section4ThumbOver20 = "night_T1992j1_KM_thm_sinking_a.jpg";
var Section4Full20 = "night_T1992j1_KM_sinking.jpg";
var Section4Title20 = "<h1><i> </i></h1> \n\
";
var Section4Desc20 = "<span class=\"Available\">T1992j1</span><br><br>\
Shortly after the lights went out the incredible stress on the massive hull angling out of the water becomes too much, and with a thunderous roar <i>Titanic</i> tears apart. Painted for <i>Titanic: An Illustrated History</i>. <br><br>Acrylic on board <br>19 3/8 x 26” (49.2 x 66 cm)";
var Section4Purchase20 = "YES";
var Section4Licensing20 = "YES";
var Section4MailLink20 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1992j1\" class=\"maillink\">CONTACT US <br>About Painting T1992j1 </a>";

var Section4Thumb21 = "night_T1992j2-02_KM_thm_sinking.jpg";
var Section4ThumbOver21 = "night_T1992j2-02_KM_thm_sinking_a.jpg";
var Section4Full21 = "night_T1992j2-02_KM_sinking.jpg";
var Section4Title21 = "<h1><i> </i></h1> \n\
";
var Section4Desc21 = "<span class=\"Available\">T1992j-02</span><br><br>\
In 2002 I digitally enhanced painting T1992j1 (foreground lifeboat made larger and another boat added) for the book <i>Ghosts of the Abyss</i>, and it was amazingly converted to 3D for the juvenile edition.";
var Section4Purchase21 = "NO";
var Section4Licensing21 = "YES";
var Section4MailLink21 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1992j-02\" class=\"maillink\">CONTACT US <br>About Painting T1992j-02 </a>";

var Section4Thumb22 = "night_T1996b_KM_thm_sinking.jpg";
var Section4ThumbOver22 = "night_T1996b_KM_thm_sinking_a.jpg";
var Section4Full22 = "night_T1996b_KM_sinking.jpg";
var Section4Title22 = "<h1><i> </i></h1> \n\
";
var Section4Desc22 = "<span class=\"Available\">T1996b</span><br><br>\
At about 1:45 a.m. <i>Titanic</i>&rsquo;s bow has dipped beneath the icy sea, hastening the pace of her sinking. In the foreground is Engelhardt collapsible boat C. Painted for the dust jacket of <i>Lost Liners</i>, this is one of my favorites. <br><br>Acrylic on board <br>20 x 28” (50.8 x 71.1 cm)";
var Section4Purchase22 = "NO";
var Section4Licensing22 = "YES";
var Section4MailLink22 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1996b\" class=\"maillink\">CONTACT US <br>About Painting T1996b </a>";

var Section4Thumb23 = "night_T1996c_KM_thm_sinking.jpg";
var Section4ThumbOver23 = "night_T1996c_KM_thm_sinking_a.jpg";
var Section4Full23 = "night_T1996c_KM_sinking.jpg";
var Section4Title23 = "<h1><i> </i></h1> \n\
";
var Section4Desc23 = "<span class=\"Available\">T1996c</span><br><br>\
Lucky occupants of emergency boat No. 2, commanded by Fourth Officer Joseph Boxhall, watch the surreal sight in awe and horror as <i>Titanic</i>’s stern rears ever higher. Featured on the cover of <i>Life</i>, June 1997. <br><br>Acrylic on board <br>18 1/2 x 26” (47 x 66 cm)";
var Section4Purchase23 = "NO";
var Section4Licensing23 = "YES";
var Section4MailLink23 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1996c\" class=\"maillink\">CONTACT US <br>About Painting T1996c </a>";

var Section4Thumb24 = "night_T1996d_KM_thm_sinking.jpg";
var Section4ThumbOver24 = "night_T1996d_KM_thm_sinking_a.jpg";
var Section4Full24 = "night_T1996d_KM_sinking.jpg";
var Section4Title24 = "<h1><i> </i></h1> \n\
";
var Section4Desc24 = "<span class=\"Available\">T1996d</span><br><br>\
<i>Titanic</i>’s breakup both above and below the waterline, achieved by making a reversed enlargement of image T1992j1, altering the superstructure to make it accurate for a starboard view, then painting the underwater part of the scene. <br><br>Acrylic on photographic print <br>18 x 24” (45.7 x 61 cm)";
var Section4Purchase24 = "NO";
var Section4Licensing24 = "YES";
var Section4MailLink24 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1996d\" class=\"maillink\">CONTACT US <br>About Painting T1996d </a>";

var Section4Thumb25 = "night_T1997i_KM_thm.jpg";
var Section4ThumbOver25 = "night_T1997i_KM_thm_a.jpg";
var Section4Full25 = "night_T1997i_KM.jpg";
var Section4Title25 = "<h1><i> </i></h1> \n\
";
var Section4Desc25 = "<span class=\"Available\">T1997i</span><br><br>\
<i>Titanic</i> strikes the ice, with a cutaway showing boiler room No. 6, ballast tanks and double bottom for the best-selling children&rsquo;s book <i>Inside the Titanic</i>. <br><br>Acrylic retouching of a darkened photographic enlargement of cutaway T1997a, unmounted <br>19 3/4 x 17 3/4” <br>(50.1 x 45 cm)";
var Section4Purchase25 = "YES";
var Section4Licensing25 = "YES";
var Section4MailLink25 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1997i\" class=\"maillink\">CONTACT US <br>About Painting T1997i </a>";

var Section4Thumb26 = "night_T1997j_KM_thm_sinking.jpg";
var Section4ThumbOver26 = "night_T1997j_KM_thm_sinking_a.jpg";
var Section4Full26 = "night_T1997j_KM_sinking.jpg";
var Section4Title26 = "<h1><i> </i></h1> \n\
";
var Section4Desc26 = "<span class=\"Available\">T1997j</span><br><br>\
Cutaway showing the Grand Staircase and spaces below it, including linen lockers and coal bunkers, as they might have appeared during the sinking, for the book <i>Inside the Titanic</i>. <br><br>Acrylic retouching on a photographic enlargement of part of T1982a, unmounted, <br>16 x 20 1/2” <br>(40.7 x 52.2 cm)";
var Section4Purchase26 = "YES";
var Section4Licensing26 = "YES";
var Section4MailLink26 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1997j\" class=\"maillink\">CONTACT US <br>About Painting T1997j </a>";

var Section4Thumb27 = "night_T1998a_KM_thm_sinking.jpg";
var Section4ThumbOver27 = "night_T1998a_KM_thm_sinking_a.jpg";
var Section4Full27 = "night_T1998a_KM_sinking.jpg";
var Section4Title27 = "<h1><i> </i></h1> \n\
<h2>&ldquo;Her Last Hour&rdquo;</h2>";
var Section4Desc27 = "<span class=\"Available\">T1998a</span><br><br>\
Inspired by scenes in the 1997 motion picture <i>TITANIC</i>, a distress rocket explodes over the sinking ship which looks like a giant &ldquo;sagging birthday cake,&rdquo; in the words of a survivor. One of my favorites.  <br><br>Acrylic on board <br>approx. 20 x 30” (50.8 x 76.2 cm)";
var Section4Purchase27 = "NO";
var Section4Licensing27 = "YES";
var Section4MailLink27 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1998a\" class=\"maillink\">CONTACT US <br>About Painting T1998a </a>";

var Section4Thumb28 = "night_T1998e_KM_thm_sinking.jpg";
var Section4ThumbOver28 = "night_T1998e_KM_thm_sinking_a.jpg";
var Section4Full28 = "night_T1998e_KM_sinking.jpg";
var Section4Title28 = "<h1><i> </i></h1> \n\
";
var Section4Desc28 = "<span class=\"Available\">T1998e</span><br><br>\
Shortly after the accident, waste steam is vented furiously from funnel pipes and lifeboats are swung out as <i>Titanic</i> begins to settle at the bow. Commissioned for the book <i>Ken Marschall&rsquo;s Art of Titanic&rdquo;</i>. <br><br>Acrylic on board <br>20 x 30” (50.8 x 76.2 cm)";
var Section4Purchase28 = "NO";
var Section4Licensing28 = "YES";
var Section4MailLink28 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1998e\" class=\"maillink\">CONTACT US <br>About Painting T1998e </a>";

//Wreckage Section 5

var Section5Link = "wreck.html";
var Section5Count = 25;
var Section5PageCount = 6;

var Section5Title = "wreckage_title_thm.jpg";
var Section5TitleOver = "wreckage_title_thm_a.jpg";

var Section5PrevSection = "night_title_thm.jpg";
var Section5PrevSectionOver = "nighttitle_thm_a.jpg";
var Section5PrevSectionLink = "night.html";

var Section5NextSection = "none.jpg";
var Section5NextSectionOver = "none.jpg";
var Section5NextSectionLink = "none.html";

var Section5Thumb1 = "wreckage_T1976b_KM_thm.jpg";
var Section5ThumbOver1 = "wreckage_T1976b_KM_thm_a.jpg";
var Section5Full1 = "wreckage_T1976b_KM.jpg";
var Section5Title1 = "<h1><i> </i></h1> \n\
";
var Section5Desc1 = "<span class=\"Available\">T1976b</span><br><br>\
Inspired by Clive Cussler&rsquo;s bestseller <i>Raise the Titanic!</i>, this hypothetical view of how the salvaged vessel might appear served as inspiration for the art department during the movie&rsquo;s preproduction in 1977. <br><br>Acrylic on board <br>6 1/2 x 10 1/2” <br>(16.5 x 26.7 cm)";
var Section5Purchase1 = "NO";
var Section5Licensing1 = "YES";
var Section5MailLink1 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1976b\" class=\"maillink\">CONTACT US <br>About Painting T1976b </a>";

var Section5Thumb2 = "wreckage_T1980b_KM_thm.jpg";
var Section5ThumbOver2 = "wreckage_T1980b_KM_thm_a.jpg";
var Section5Full2 = "wreckage_T1980b_KM.jpg";
var Section5Title2 = "<h1><i> </i></h1> \n\
";
var Section5Desc2 = "<span class=\"Available\">T1980b</span><br><br>\
Fanciful art for the poster for the 1980 film documentary <i>Search for the Titanic</i>. The original painting is currently displayed at the <i>Titanic</i> attraction in Branson, Missouri. <br><br>Acrylic on masonite <br>24 x 16” (61 x 40.6 cm)";
var Section5Purchase2 = "NO";
var Section5Licensing2 = "NO";
var Section5MailLink2 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1980b\" class=\"maillink\">CONTACT US <br>About Painting T1980b </a>";

var Section5Thumb3 = "wreckage_T1985_KM_thm.jpg";
var Section5ThumbOver3 = "wreckage_T1985_KM_thm_a.jpg";
var Section5Full3 = "wreckage_T1985_KM.jpg";
var Section5Title3 = "<h1><i> </i></h1> \n\
";
var Section5Desc3 = "<span class=\"Available\">T1985</span><br><br>\
Proposal painting of a sunken <i>Titanic</i> submitted to <i>National Geographic</i> in May 1985 in hopes that if the wreck were found that summer they might hire me to illustrate for the magazine. I was not. <br><br>Acrylic on board <br>10 x 14” (25.4 x 35.6 cm)";
var Section5Purchase3 = "NO";
var Section5Licensing3 = "YES";
var Section5MailLink3 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1985\" class=\"maillink\">CONTACT US <br>About Painting T1985 </a>";

var Section5Thumb4 = "wreckage_T1986a_KM_thm.jpg";
var Section5ThumbOver4 = "wreckage_T1986a_KM_thm_a.jpg";
var Section5Full4 = "wreckage_T1986a_KM.jpg";
var Section5Title4 = "<h1><i> </i></h1> \n\
";
var Section5Desc4 = "<span class=\"Available\">T1986a</span><br><br>\
Created to entice <i>Time</i> magazine to do a cover story during the summer 1986 exploration by Robert Ballard (Woods Hole Oceanographic Institution) and IFREMER. It was published on the cover of the August 11, 1986 issue. <br><br>Acrylic on board <br>approx. 20 x 15” <br>(50.8 x 38.1 cm)";
var Section5Purchase4 = "NO";
var Section5Licensing4 = "YES";
var Section5MailLink4 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1986a\" class=\"maillink\">CONTACT US <br>About Painting T1986a </a>";


var Section5Thumb5 = "wreckage_T1986b_KM_thm.jpg";
var Section5ThumbOver5 = "wreckage_T1986b_KM_thm_a.jpg";
var Section5Full5 = "wreckage_T1986b_KM.jpg";
var Section5Title5 = "<h1><i> </i></h1> \n\
";
var Section5Desc5 = "<span class=\"Available\">T1986b</span><br><br>\
My first study of the wreck after consulting Ballard’s imagery in detail, commissioned for the box cover of the 1986 National Geographic video <i>Secrets of the Titanic</i>. <br><br>Acrylic on board <br>19 x 12” (48.3 x 30.5 cm)";
var Section5Purchase5 = "YES";
var Section5Licensing5 = "NO";
var Section5MailLink5 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1986b\" class=\"maillink\">CONTACT US <br>About Painting T1986b </a>";


var Section5Thumb6 = "wreckage_T1987a_KM_thm.jpg";
var Section5ThumbOver6 = "wreckage_T1987a_KM_thm_a.jpg";
var Section5Full6 = "wreckage_T1987a_KM.jpg";
var Section5Title6 = "<h1><i> </i></h1> \n\
";
var Section5Desc6 = "<span class=\"Available\">T1987a</span><br><br>\
Painted for the cover of the best-seller <i>The Discovery of the Titanic</i>, the ROV <i>Jason Junior</i> examines <i>Titanic</i>&rsquo;s starboard anchor during the second expedition to the wreck in the summer of 1986. <br><br>Acrylic on board <br>20 x 15” (50.8 x 38.1 cm)";
var Section5Purchase6 = "NO";
var Section5Licensing6 = "YES";
var Section5MailLink6 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1987a\" class=\"maillink\">CONTACT US <br>About Painting T1987a </a>";

var Section5Thumb7 = "wreckage_T1987b-89_KM_thm.jpg";
var Section5ThumbOver7 = "wreckage_T1987b-89_KM_thm_a.jpg";
var Section5Full7 = "wreckage_T1987b-89_KM.jpg";
var Section5Title7 = "<h1><i> </i></h1> \n\
";
var Section5Desc7 = "<span class=\"Available\">T1987b-89</span><br><br>\
The bow section of <i>Titanic</i> as it appeared in the summer of 1986. A photographic enlargement of the painting was upgraded a bit with new detail in 1989, which is what you see here. <br><br>The original painting is acrylic on masonite <br>18 x 28” (45.7 x 71.1 cm)";
var Section5Purchase7 = "NO";
var Section5Licensing7 = "YES";
var Section5MailLink7 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1987b-89\" class=\"maillink\">CONTACT US <br>About Painting T1987b-89 </a>";

var Section5Thumb8 = "wreckage_T1987c-05_KM_thm.jpg";
var Section5ThumbOver8 = "wreckage_T1987c-05_KM_thm_a.jpg";
var Section5Full8 = "wreckage_T1987c-05_KM.jpg";
var Section5Title8 = "<h1><i> </i></h1> \n\
<h2>&ldquo;The Broken Dream&rdquo;</h2>";
var Section5Desc8 = "<span class=\"Available\">T1987c-05</span><br><br>\
The bow section of <i>Titanic</i> as viewed from the rear. The scene was digitally updated in 2005, which is what you see here. <br><br>The original painting is acrylic on masonite <br>18 x 28” (45.7 x 71.1 cm)";
var Section5Purchase8 = "YES";
var Section5Licensing8 = "YES";
var Section5MailLink8 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1987c-05\" class=\"maillink\">CONTACT US <br>About Painting T1987c-05 </a>";

var Section5Thumb9 = "wreckage_T1987d_KM_thm.jpg";
var Section5ThumbOver9 = "wreckage_T1987d_KM_thm_a.jpg";
var Section5Full9 = "wreckage_T1987d_KM.jpg";
var Section5Title9 = "<h1><i> </i></h1> \n\
";
var Section5Desc9 = "<span class=\"Available\">T1987d</span><br><br>\
The stern section of <i>Titanic</i> and surrounding debris, with the submersible <i>Alvin</i> under the fantail, as they appeared during the 1986 Ballard/WHOI exploration. <br><br>Acrylic on masonite <br>18 x 28” (45.7 x 71.1 cm)";
var Section5Purchase9 = "NO";
var Section5Licensing9 = "YES";
var Section5MailLink9 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1987d\" class=\"maillink\">CONTACT US <br>About Painting T1987d </a>";

var Section5Thumb10 = "wreckage_T1987e_KM_thm.jpg";
var Section5ThumbOver10 = "wreckage_T1987e_KM_thm_a.jpg";
var Section5Full10 = "wreckage_T1987e_KM.jpg";
var Section5Title10 = "<h1><i> </i></h1> \n\
<h2>&ldquo;Exploring a Legend&rdquo;</h2>";
var Section5Desc10 = "<span class=\"Available\">T1987e</span><br><br>\
<i>Alvin</i> rests on <i>Titanic</i>&rsquo;s bridge in 1986, illuminating the bronze telemotor mechanism that once held the ship&rsquo;s wheel, while the ROV <i>Jason Junior</i> examines the crow&rsquo;s nest. <br><br>Acrylic on masonite <br>15 x 22 1/2” <br>(38.1 x 57.1 cm)";
var Section5Purchase10 = "YES";
var Section5Licensing10 = "YES";
var Section5MailLink10 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1987e\" class=\"maillink\">CONTACT US <br>About Painting T1987e </a>";

var Section5Thumb11 = "wreckage_T1987f_KM_thm.jpg";
var Section5ThumbOver11 = "wreckage_T1987f_KM_thm_a.jpg";
var Section5Full11 = "wreckage_T1987f_KM.jpg";
var Section5Title11 = "<h1><i> </i></h1> \n\
<h2>&ldquo;Descending the Grand Staircase&rdquo;</h2>";
var Section5Desc11 = "<span class=\"Available\">T1987f</span><br><br>\
The deep submersible <i>Alvin</i> rests on the roof of <i>Titanic</i>&rsquo;s officers&rsquo; quarters in 1986 and sends the ROV <i>Jason Junior</i> down into the chasm that once housed the beautiful first-class staircase. <br><br>Acrylic on masonite <br>15 x 22 1/2” <br>(38.1 x 57.1 cm)";
var Section5Purchase11 = "YES";
var Section5Licensing11 = "YES";
var Section5MailLink11 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1987f\" class=\"maillink\">CONTACT US <br>About Painting T1987f </a>";

var Section5Thumb12 = "wreckage_T1987g_KM_thm.jpg";
var Section5ThumbOver12 = "wreckage_T1987g_KM_thm_a.jpg";
var Section5Full12 = "wreckage_T1987g_KM.jpg";
var Section5Title12 = "<h1><i> </i></h1> \n\
<h2>&ldquo;Where Millionaires Once Walked&rdquo;</h2>";
var Section5Desc12 = "<span class=\"Available\">T1987g</span><br><br>\
Perched on the starboard Boat Deck next to the officers&rsquo; quarters in 1986, <i>Alvin</i> sends <i>Jason Junior</i> aft to peer into the gymnasium for the first time in nearly three quarters of a century. <br><br>Acrylic on masonite <br>15 x 22 1/2” <br>(38.1 x 57.1 cm)";
var Section5Purchase12 = "YES";
var Section5Licensing12 = "YES";
var Section5MailLink12 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1987g\" class=\"maillink\">CONTACT US <br>About Painting T1987g </a>";

var Section5Thumb13 = "wreckage_T1988a_KM_thm.jpg";
var Section5ThumbOver13 = "wreckage_T1988a_KM_thm_a.jpg";
var Section5Full13 = "wreckage_T1988a_KM.jpg";
var Section5Title13 = "<h1><i> </i></h1> \n\
<h2>&ldquo;First Sight&rdquo;</h2>";
var Section5Desc13 = "<span class=\"Available\">T1988a</span><br><br>\
On the first manned dive to the wreck on July 13, 1986, the submersible <i>Alvin</i> approaches the rusted hull of <i>Titanic</i> in man&rsquo;s first direct glimpse of the ship in 74 years. Painted for <i>Exploring the Titanic</i>. <br><br>Acrylic on board <br>13 x 20” (33 x 50.8 cm)";
var Section5Purchase13 = "YES";
var Section5Licensing13 = "YES";
var Section5MailLink13 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1988a\" class=\"maillink\">CONTACT US <br>About Painting T1988a </a>";

var Section5Thumb14 = "wreckage_T1988b_KM_thm.jpg";
var Section5ThumbOver14 = "wreckage_T1988b_KM_thm_a.jpg";
var Section5Full14 = "wreckage_T1988b_KM.jpg";
var Section5Title14 = "<h1><i> </i></h1> \n\
";
var Section5Desc14 = "<span class=\"Available\">T1988b</span><br><br>\
A retouched photograph of painting T1987b-89 showing the forward part of the bow section with <i>Alvin</i> illuminating the crow&rsquo;s nest in 1986. <br><br>Acrylic on mounted photographic enlargement <br>18 x 24” (45.7 x 61 cm)";
var Section5Purchase14 = "YES";
var Section5Licensing14 = "YES";
var Section5MailLink14 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1988b\" class=\"maillink\">CONTACT US <br>About Painting T1988b </a>";

var Section5Thumb15 = "wreckage_T1988d_KM_thm.jpg";
var Section5ThumbOver15 = "wreckage_T1988d_KM_thm_a.jpg";
var Section5Full15 = "wreckage_T1988d_KM.jpg";
var Section5Title15 = "<h1><i> </i></h1> \n\
";
var Section5Desc15 = "<span class=\"Available\">T1988d</span><br><br>\
This is the matching painting to the 1912 cutaway T1988c, showing <i>Titanic</i>&rsquo;s bridge area as it appeared at the time of the wreck&rsquo;s discovery in 1985, for the children&rsquo;s book <i>Exploring the Titanic</i>. <br><br>Acrylic on masonite mounted to plywood <br>24 x 18” (61 x 45.7 cm)";
var Section5Purchase15 = "YES";
var Section5Licensing15 = "YES";
var Section5MailLink15 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1988d\" class=\"maillink\">CONTACT US <br>About Painting T1988d </a>";

var Section5Thumb16 = "wreckage_T1988e_KM_thm.jpg";
var Section5ThumbOver16 = "wreckage_T1988e_KM_thm_a.jpg";
var Section5Full16 = "wreckage_T1988e_KM.jpg";
var Section5Title16 = "<h1><i> </i></h1> \n\
";
var Section5Desc16 = "<span class=\"Available\">T1988e</span><br><br>\
An overview of the wreck area, looking basically west, showing the bow section at right and the stern at left, to scale, and part of the debris field. Painted for <i>Exploring the Titanic</i>. <br><br>Acrylic on board <br>11 x 20” (27.9 x 50.8 cm)";
var Section5Purchase16 = "NO";
var Section5Licensing16 = "YES";
var Section5MailLink16 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1988e\" class=\"maillink\">CONTACT US <br>About Painting T1988e </a>";

var Section5Thumb17 = "wreckage_T1988g1_KM_thm.jpg";
var Section5ThumbOver17 = "wreckage_T1988g1_KM_thm_a.jpg";
var Section5Full17 = "wreckage_T1988g1_KM.jpg";
var Section5Title17 = "<h1><i> </i></h1> \n\
";
var Section5Desc17 = "<span class=\"Available\">T1988g1</span><br><br>\
The bow section of <i>Titanic</i> as it appeared in the summer of 1986, one year after its discovery at a depth of 12,460 feet in the North Atlantic. <i>Alvin</i> explores in the distance. One of my favorites. <br><br>Acrylic on masonite <br>20 x 32 1/4” <br>(50.8 x 81.9 cm)";
var Section5Purchase17 = "YES";
var Section5Licensing17 = "YES";
var Section5MailLink17 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1988g1\" class=\"maillink\">CONTACT US <br>About Painting T1988g1 </a>";

var Section5Thumb18 = "wreckage_T1988g2-02_KM_thm.jpg";
var Section5ThumbOver18 = "wreckage_T1988g2-02_KM_thm_a.jpg";
var Section5Full18 = "wreckage_T1988g2-02_KM.jpg";
var Section5Title18 = "<h1><i> </i></h1> \n\
";
var Section5Desc18 = "<span class=\"Available\">T1988g2-02</span><br><br>\
Digital retouching of painting T1988g1, done in 2002 to show the wreck&rsquo;s condition in 2001, adding the two Mir submersibles and the <i>Medusa</i> lighting rig used during the James Cameron exploration of that year.";
var Section5Purchase18 = "NO";
var Section5Licensing18 = "YES";
var Section5MailLink18 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1988g2-02\" class=\"maillink\">CONTACT US <br>About Painting T1988g2-02 </a>";


var Section5Thumb19 = "wreckage_T1988g3-05_KM_thm.jpg";
var Section5ThumbOver19 = "wreckage_T1988g3-05_KM_thm_a.jpg";
var Section5Full19 = "wreckage_T1988g3-05_KM.jpg";
var Section5Title19 = "<h1><i> </i></h1> \n\
";
var Section5Desc19 = "<span class=\"Available\">T1988g3-05</span><br><br>\
Digital retouching of painting T1988g1 to show the wreck&rsquo;s condition in 2005 after that year&rsquo;s exploration by James Cameron. Note the further collapse of the mast.";
var Section5Purchase19 = "NO";
var Section5Licensing19 = "YES";
var Section5MailLink19 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1988g3-05\" class=\"maillink\">CONTACT US <br>About Painting T1988g3-05 </a>";

var Section5Thumb20 = "wreckage_T1989a_KM_thm.jpg";
var Section5ThumbOver20 = "wreckage_T1989a_KM_thm_a.jpg";
var Section5Full20 = "wreckage_T1989a_KM.jpg";
var Section5Title20 = "<h1><i> </i></h1> \n\
";
var Section5Desc20 = "<span class=\"Available\">T1989a</span><br><br>\
<i>Titanic</i>&rsquo;s stern section as seen from the starboard side, with the break in the foreground and her massive reciprocating engines open to view, surrounded by the vast debris field. <br><br>Acrylic on masonite mounted to plywood <br>approx. 18 x 24” <br>(45.7 x 61 cm)";
var Section5Purchase20 = "YES";
var Section5Licensing20 = "YES";
var Section5MailLink20 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1989a\" class=\"maillink\">CONTACT US <br>About Painting T1989a </a>";

var Section5Thumb21 = "wreckage_T1989b_KM_thm.jpg";
var Section5ThumbOver21 = "wreckage_T1989b_KM_thm_a.jpg";
var Section5Full21 = "wreckage_T1989b_KM.jpg";
var Section5Title21 = "<h1><i> </i></h1> \n\
";
var Section5Desc21 = "<span class=\"Available\">T1989b</span><br><br>\
Overview of the wreck site showing the stern section at left, the bow in the distance, and the bulk of the debris field. Painted for the book <i>The Discovery of the Titanic</i>. <br><br>Acrylic on board <br>approx. 12 x 16” <br>(30.5 x 40.6 cm)";
var Section5Purchase21 = "YES";
var Section5Licensing21 = "YES";
var Section5MailLink21 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1989b\" class=\"maillink\">CONTACT US <br>About Painting T1989b </a>";

var Section5Thumb22 = "wreckage_T1992l_KM_thm.jpg";
var Section5ThumbOver22 = "wreckage_T1992l_KM_thm_a.jpg";
var Section5Full22 = "wreckage_T1992l_KM.jpg";
var Section5Title22 = "<h1><i> </i></h1> \n\
";
var Section5Desc22 = "<span class=\"Available\">T1992l</span><br><br>\
Looking aft inside the remains of the first-class forward stairwell during the first-ever exploration inside the ship on July 15, 1986. The ROV illuminates a dangling chandelier. Painted for <i>Titanic: An Illustrated History</i>. <br><br>Acrylic on board <br>20 3/4 x 18 3/4” <br>(52.7 x 47.6 cm)";
var Section5Purchase22 = "YES";
var Section5Licensing22 = "YES";
var Section5MailLink22 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1992l\" class=\"maillink\">CONTACT US <br>About Painting T1992l </a>";

var Section5Thumb23 = "wreckage_T1998b1_KM_thm.jpg";
var Section5ThumbOver23 = "wreckage_T1998b1_KM_thm_a.jpg";
var Section5Full23 = "wreckage_T1998b1_KM.jpg";
var Section5Title23 = "<h1><i> </i></h1> \n\
";
var Section5Desc23 = "<span class=\"Available\">T1998b1</span><br><br>\
During the first manned exploration of the wreck in 1986, the submersible <i>Alvin</i> illuminates the starboard bridge area for the first time in nearly three quarters of a century. The stern section is visible in the distance. <br><br>Acrylic on board <br>18 x 28” (45.7 x 71.1 cm)";
var Section5Purchase23 = "NO";
var Section5Licensing23 = "YES";
var Section5MailLink23 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1998b1\" class=\"maillink\">CONTACT US <br>About Painting T1998b1 </a>";

var Section5Thumb24 = "wreckage_T1998b2-02_KM_thm.jpg";
var Section5ThumbOver24 = "wreckage_T1998b2-02_KM_thm_a.jpg";
var Section5Full24 = "wreckage_T1998b2-02_KM.jpg";
var Section5Title24 = "<h1><i> </i></h1> \n\
";
var Section5Desc24 = "<span class=\"Available\">T1998b2-02</span><br><br>\
This is a digital alteration of painting T1998b1 for the book <i>Ghosts of the Abyss</i>. The scene shows the Russian Mir submersibles and <i>Medusa</i> lighting platform used in James Cameron&rsquo;s 2001 exploration.";
var Section5Purchase24 = "NO";
var Section5Licensing24 = "YES";
var Section5MailLink24 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1998b2-02\" class=\"maillink\">CONTACT US <br>About Painting T1998b2-02 </a>";

var Section5Thumb25 = "wreckage_T1998c_KM_thm.jpg";
var Section5ThumbOver25 = "wreckage_T1998c_KM_thm_a.jpg";
var Section5Full25 = "wreckage_T1998c_KM.jpg";
var Section5Title25 = "<h1><i> </i></h1> \n\
";
var Section5Desc25 = "<span class=\"Available\">T1998c</span><br><br>\
In the summer of 1986 the submersible <i>Alvin</i> rests on <i>Titanic</i>&rsquo;s port Boat Deck near the former bridge as the Woods Hole ROV <i>Jason Junior</i> is sent down to explore the forward B-deck promenade. Painted for the book <i>Ghost Liners</i>. <br><br>Acrylic on board <br>22 x 18” (55.9 x 45.7 cm)";
var Section5Purchase25 = "NO";
var Section5Licensing25 = "YES";
var Section5MailLink25 = "<a href=\"MAILTO:kenmarschallinc@aol.com?subject=Email About This Painting: T1998c\" class=\"maillink\">CONTACT US <br>About Painting T1998c </a>";

