﻿function displayShippingNotice()
{
    // JS 20090922

    var strShippingNotice;
    
    strShippingNotice = "Any orders placed after Sunday, September 20th, are not guaranteed shipment before October 5th due to Weber’s Annual Inventory Shutdown."
        + '\n\n'
        + "There will be no shipping from September 25th to October 5th."
        + '\n\n'
        + "Orders placed during the inventory shutdown will be shipped in the order in order in which they were taken beginning on October 5th, 2009.";
   
    // JS 20091007: commented out when shipping notice not required.
    //alert(strShippingNotice);

}