//*****************************************************************************
//*****************************************************************************
//Global Variables
gc_BodyToDisplay           = "";

gc_TopMenuItemToHighlight  = "";
gc_LeftMenuItemToHighlight = "";
gc_ImageDirectory          = "images";

gc_TopMenuItemToHighlight  = retrieveSimplePageName();


//***********************************
//** BEGIN - Randomly display star color
//***********************************
ga_stars=new Array(3);

ga_stars[0]  = "blue"
ga_stars[1]  = "yellow"
ga_stars[2]  = "red"
ga_stars[3]  = "green"

gi_starRandNum=Math.floor(Math.random()*4);
//***********************************
//** END - Randomly display buttons
//***********************************


//*****************************************************************************
//* Verify that the user really wants to delete the volunteer
//*****************************************************************************
function confirmDeleteVolunteer( pii_record_ID  ) {

    if(confirm("You are about to delete this record permanently.\n\nClick 'OK' to delete or 'Cancel' to keep."))
        document.location='ca.displayvolunteers.asp?action=delete&ID=' + pii_record_ID

}

//*****************************************************************************
//** FUNCTION: Extracts the simple name of the page out of the current URL
//*****************************************************************************
function retrieveSimplePageName() {
    lc_location  = location.href.substring(location.href.lastIndexOf('/')+4,location.href.length-5);

    // Check to see if URL has an achor (e.g., #subway) in it.  If it does, remove it to ensure we have the base page identified correctly.
    lc_hashindex = lc_location.lastIndexOf('#')
    if ( lc_hashindex > -1 ) {
        lc_location = lc_location.substring(0,lc_hashindex-5);
    }
    return lc_location
}
//*****************************************************************************
//** FUNCTION: Highlights the correct image for the current page
//*****************************************************************************
function setMenuBarOn( lc_menu_image_to_highlight ) {

    if (lc_menu_image_to_highlight=="")
        lc_menu_image_to_highlight = gc_TopMenuItemToHighlight;

    //********************************
    //** Highlight the top nav button
    //********************************
    lc_cmd_test="document."+lc_menu_image_to_highlight;
    lc_cmd="document."+lc_menu_image_to_highlight+".src='"+gc_ImageDirectory + "/ca." + lc_menu_image_to_highlight+".on.gif'";
    //alert(lc_cmd);
    if (eval(lc_cmd_test)) eval(lc_cmd);

    //********************************
    //** Highlight the left nav button
    //********************************
    if (gc_LeftMenuItemToHighlight != "") {
        lc_cmd="document."+gc_LeftMenuItemToHighlight+".src='"+gc_ImageDirectory + "/ca." + gc_LeftMenuItemToHighlight+".on.gif'";
        eval(lc_cmd);
    }
    //alert(lc_cmd);
}


//*****************************************************************************
//** FUNCTION: Handles Mouse Over, Out and Click actions
//** Designed to work with button images that end in <buttonname>.on.gif and <buttonname>.of.gif
//** JPG can also be used as well.
//*****************************************************************************
function mouseOverInt(piiAction, phiObject) {

  //0- Graphic representing "on" state
  //1- Graphic representing "off" state
  //2- html page to click to


    if ((piiAction==0) || (phiObject.name==gc_TopMenuItemToHighlight) || (phiObject.name==gc_LeftMenuItemToHighlight))
        //phiObject.src="images/"+phiObject.src.substring(phiObject.src.lastIndexOf('/')+1,phiObject.src.length-7)+".on.gif";
        phiObject.src=phiObject.src.replace(".of.",".on.");
    else
        if (piiAction==1)
            //phiObject.src="images/"+phiObject.src.substring(phiObject.src.lastIndexOf('/')+1,phiObject.src.length-7)+".of.gif";
            phiObject.src=phiObject.src.replace(".on.",".of.");
        else
            document.location=phiObject.src.substring(phiObject.src.lastIndexOf('/')+1,phiObject.src.length-7)+".html";
}


//*****************************************************************************
//** FUNCTION: Generates basic HTML for display of text
//** pci_text:         The text to be displayed.  If a Rollover button is requested, the name of the button can provided in "pci_text" but prefixed with "RO:"
//** pci_tipTextCell2: The text to be displayed in the tipbox popup
//** pci_class:        The class to be used to display the text
//** pci_linkHref:     The page to link to if necessary; "nolink" should be passed if no link is necessary
//** pci_cellDivider : Indicator of whether the function should include a ROW and/or CELL dividers
//*****************************************************************************
function buildHTMLText( pci_text, pci_tipTextCell2, pci_class, pci_linkHref, pci_cellDivider ) {

lc_returnText             = pci_text;
lc_rolloverName           = "";
lc_returnStringCellStart  = "";
lc_returnStringCellEnd    = "";
lc_returnStringClass      = "";
lc_returnString           = "";

    //** Check to see if this is a rollover request
    if (pci_text.substring(0,3)=="RO:") {
        lc_rolloverName = pci_text.replace("RO:","")

        lc_returnText = "<img title='" + pci_tipTextCell2 + "' name='"+ lc_rolloverName +"' src='images/ca."+ lc_rolloverName +".of.gif' border='0' alt=''>"

        //** If the rollover request is for the main image to highlight representing the current page, then don't make it linkable as you are already on that page

        lc_tipTextTitle = "Christmas Attic Highlights"
        lc_tipTextCell1 = "<img src=images/star.gif width=40>"

        if (( lc_rolloverName!=gc_TopMenuItemToHighlight ) && ( lc_rolloverName!=gc_LeftMenuItemToHighlight )) {

            //** Uncomment this to display tooltip box
            //lc_returnText  = "<a href='ca." + lc_rolloverName + ".html' onmouseOver=\"ddrivetip('" + lc_tipTextTitle + "','" + lc_tipTextCell1 + "','" + pci_tipTextCell2 + "',200);mouseOverInt(0," + lc_rolloverName + ");\" onmouseout='hideddrivetip();mouseOverInt(1," + lc_rolloverName + ");'>" + lc_returnText + "</a>";

            lc_returnText  = "<a title='" + pci_tipTextCell2 + "' href='ca." + lc_rolloverName + ".html' onmouseOver=\"mouseOverInt(0," + lc_rolloverName + ");\" onmouseout='mouseOverInt(1," + lc_rolloverName + ");'>" + lc_returnText + "</a>";

        }

    //alert(lc_returnText);
    }

    //** Check to see if a class was provided
    if (pci_class!="defaultclass") {
        lc_returnStringClass      = " class="+pci_class ;
    }

    //** Check to see if a ROW was requested
    if (pci_cellDivider=="row") {
        lc_returnStringCellStart  = "<tr><td"+lc_returnStringClass+">";
        lc_returnStringCellEnd    = "</td></tr>";
    }

    //** Check to see if a CELL was requested
    if (pci_cellDivider=="cell") {
        lc_returnStringCellStart  = "<td"+lc_returnStringClass+">";
        lc_returnStringCellEnd    = "</td>";
    }

    //** Check to see if a link was provided
    if (pci_linkHref!="nolink") {
        lc_returnStringCellStart  += "<a href='"+pci_linkHref+"'"+lc_returnStringClass+">";
        lc_returnStringCellEnd    = "</a>"+lc_returnStringCellEnd;
    }


    lc_returnString = lc_returnStringCellStart + lc_returnText + lc_returnStringCellEnd

    //alert(lc_returnString);

    return lc_returnString
}

//*****************************************************************************
//** FUNCTION: Preloads all rollover images by searching the images loaded into memory
//** for any with a filename that includes "of" and then it loads one into memory
//** using the same filename but replaces the "of" with "on".
//*****************************************************************************
function preloadImages () {

lc_msg              = "";
li_i                = 0;
li_j                = 0;
la_tempPreLoadImage = new Array(30);

    //alert( "a"+document.images.length );
    for (li_i=0; li_i < document.images.length; li_i++) {

        if (document.images[li_i].src.indexOf('.of.') > 0) {
            //lc_msg += "Image["+li_i+"]="+document.images[li_i].src + "\n";
            lc_msg += "Image["+li_i+"]="+document.images[li_i].src.replace(".of.",".on.") + "\n";
            //document.writeln( "<img name=preload src='" + document.images[li_i].src.replace(".of.",".on.") + "' xwidth=1 xheight=1>" );
            li_j++;
            la_tempPreLoadImage[li_j] = new Image(1,1);
            la_tempPreLoadImage[li_j].src=document.images[li_i].src.replace(".of.",".on.");
            //alert( la_tempPreLoadImage[li_j].src );
        }
    }
      //alert( lc_msg + "\n\n" + la_tempPreLoadImage[li_j].src + "\n\n" + "Ending Number of Images" + document.images.length );
}
//*****************************************************************************
//** FUNCTION: Finds the specified object and returns a pointer to it
//** poi_objID: The ID of the object to find
//** Note     : Function was extrapolated from bugbook.com
//*****************************************************************************
function getObject(poi_objID)
{
   if (document.all)
   {
      var obj = document.all[poi_objID];
   }
   else if (document.getElementById)
   {
      var obj = document.getElementById(poi_objID);
   }
        return obj;
}

//*****************************************************************************
//** FUNCTION: hides the specified object
//** poi_objID: The ID of the object to hide
//** Note     : Function was extrapolated from bugbook.com
//*****************************************************************************
function hideObject(poi_objID)
{
        var obj = getObject(poi_objID);
        var rtn = false;
        if (obj != null) {
        obj.style.display = "none";
                rtn = true;
        }
        return rtn;
}

//*****************************************************************************
//** FUNCTION: Shows the specified object
//** poi_objID: The ID of the object to show
//** Note     : Function was extrapolated from bugbook.com
//*****************************************************************************
function showObject(poi_objID)
{
        var obj = getObject(poi_objID);
        var rtn = false;
        if (obj != null) {
          obj.style.display = "inline";
          obj.style.position = "static";
          obj.style.width = "auto";
          obj.style.height = "auto";
          obj.style.overflow = "visible";
        //  obj.style.innerHTML = "<b>new name</b>";

          rtn = true;
        }
        return rtn;
}

//*****************************************************************************
//** FUNCTION: Formats the incoming number for US Currency
//*****************************************************************************
function formatCurrency(num) {
    num = num.toString().replace(/\$|\,/g,'');
    num = num.toString().replace(/\$| /g,'');
    if(isNaN(num)) {
        num = "0";
        }

    sign  = (num == (num = Math.abs(num)));
    num   = Math.floor(num*100+0.50000000001);
    cents = num%100;
    num   = Math.floor(num/100).toString();

    if(cents<10)
        cents = "0" + cents;

    for (var i = 0; i < Math.floor((num.length-(1+i))/3); i++)
        num = num.substring(0,num.length-(4*i+3))+','+
        num.substring(num.length-(4*i+3));

    return (((sign)?'':'-') + '' + num + '.' + cents);
}

//*****************************************************************************
//** FUNCTION: Recalculates the total crafter fees required and reformats all
//** money fields based on input on the registration screen
//*****************************************************************************
function recalculateRegTotal(){

    document.form1.totalCrafterFees.value=
                                          eval(document.form1.totSpaces.value)            +
                                          eval(document.form1.totAddlSpaces.value)        +
                                          eval(document.form1.totElectricity.value)       +
                                          eval(document.form1.totTables.value)            +
                                          eval(document.form1.totReturningDiscount.value) ;
  //                                      eval(document.form1.totEarlyDiscount.value)     ;

    document.form1.totSpaces.value            = formatCurrency(document.form1.totSpaces.value             );
    document.form1.totAddlSpaces.value        = formatCurrency(document.form1.totAddlSpaces.value         );
    document.form1.totElectricity.value       = formatCurrency(document.form1.totElectricity.value        );
    document.form1.totTables.value            = formatCurrency(document.form1.totTables.value             );
    document.form1.totReturningDiscount.value = formatCurrency(document.form1.totReturningDiscount.value  );
    document.form1.totalCrafterFees.value     = formatCurrency(document.form1.totalCrafterFees.value      );
}

//*****************************************************************************
//** FUNCTION: Verifies the contents of the crafter registration form for valid fields
//*****************************************************************************
function verifyFormCrafter( pif_this ) {

lc_errMsg    = "Please correct the following errors on the form and resubmit:\n";
li_errMsgLen = lc_errMsg.length;

//alert(li_errMsgLen);
//alert(1)

//alert(pif_this.nameFirst.value.length);

    if (pif_this.nameFirst.value.length==0) lc_errMsg += "\n  - Please enter your First Name";
    if (pif_this.nameLast.value.length==0)  lc_errMsg += "\n  - Please enter your Last Name";
    if (pif_this.phone.value.length==0)     lc_errMsg += "\n  - Please enter your Phone number";
    if (pif_this.email.value.length==0)     lc_errMsg += "\n  - Please enter your Email";
    if (pif_this.craftType.value.length==0) lc_errMsg += "\n  - Please enter your Craft Type";
    if (pif_this.address.value.length==0)   lc_errMsg += "\n  - Please enter your Address";
    if (pif_this.city.value.length==0)      lc_errMsg += "\n  - Please enter your City";
    if (pif_this.state.value.length==0)     lc_errMsg += "\n  - Please enter your State";
    if (pif_this.zip.value.length==0)       lc_errMsg += "\n  - Please enter your Zip code";

    if (pif_this.rulesConfirmation.checked==false)  lc_errMsg += "\n  - Please acknowledge that you've read and agree to the craft fair rules and regulations.";


    if (lc_errMsg.length > li_errMsgLen ) {
        alert(lc_errMsg);
        return false;
    }
    else
        return true;

}

//*****************************************************************************
//** FUNCTION: Verifies the contents of the volunteer registration form for valid fields
//*****************************************************************************
function verifyFormVolunteer( pif_this ) {

lc_errMsg    = "Please correct the following errors on the form and resubmit:\n";
li_errMsgLen = lc_errMsg.length;

//alert(li_errMsgLen);
//alert(1)

//alert(pif_this.nameFirst.value.length);

    if (pif_this.nameFirst.value.length==0) lc_errMsg += "\n  - Please enter your First Name";
    if (pif_this.nameLast.value.length==0)  lc_errMsg += "\n  - Please enter your Last Name";
    if (pif_this.phone.value.length==0)     lc_errMsg += "\n  - Please enter your Phone number";
    if (pif_this.email.value.length==0)     lc_errMsg += "\n  - Please enter your Email";
  //if (pif_this.activity.value.length==0)  lc_errMsg += "\n  - Please select an Activity to help with";
  //if (pif_this.timeframe.value.length==0) lc_errMsg += "\n  - Please select a timeframe to help with";

    if (lc_errMsg.length > li_errMsgLen ) {
        alert(lc_errMsg);
        return false;
    }
    else
        return true;

}

//*****************************************************************************
//** FUNCTION: Creates the common area and navigation buttons for each page
//*****************************************************************************
function showCACommonHeaderNav()
{

//alert(gc_TopMenuItemToHighlight);

    switch(gc_TopMenuItemToHighlight)
    {
        case 'home':
                    {
                        gc_BodyToDisplay += "<tr valign=top>"
                        gc_BodyToDisplay += "    <td><img src='images/spacer.gif' height=1 width=1></td>"

                        gc_BodyToDisplay += "    <td class=main>"

                        gc_BodyToDisplay += "        to the 2011 Christmas Attic Craft Fair and Silent Auction! "




                        if ( Math.random() >= 0.5 ) {
                           lc_stylecolor = "border:1px solid #4f7292;background-color:#009999; color:#fff; padding: 5px; text-align: center;"
                        } else
                        {
                           lc_stylecolor = "border:1px solid #4f7292;background-color:#0066CC; color:#fff; padding: 5px; text-align: center;"
                        }

                        gc_BodyToDisplay += "<br><br>"
                      //gc_BodyToDisplay += "<table>"
                      //gc_BodyToDisplay += "    <tr><td class=mainbold colspan=3 style='" +  lc_stylecolor + "'>"
                      //gc_BodyToDisplay += "         Our silent auction is huge this year! Click <a href='ca.auctionitems.html' style='color:#fff;'>here</a> to look at all the items and see when they are being auctioned off.  This way you know when to come to the gymnasium, check out the crafters and get in on the action."
                      ////gc_BodyToDisplay += "         We would like to thank all of our Crafters, Sponsors, Teachers, Parents, Students and Volunteers for making this year's Christmas Attic another huge success. Together, we helped raise over $21,238 for the Corpus Christi School. <br>Thank you and Merry Christmas!"
                      //gc_BodyToDisplay += "    </td></tr>"
                      //gc_BodyToDisplay += "</table>"
                      //gc_BodyToDisplay += "<br>"





                        gc_BodyToDisplay += "        This year our event will "
                        gc_BodyToDisplay += "        be held on Saturday, November 5 from 9am to 3pm. Last year's event was a huge       "
                        gc_BodyToDisplay += "        success and we are hoping to be even more successful this year! So mark your        "
                        gc_BodyToDisplay += "        calendars and come to enjoy shopping with our <span class=mainbluebold>FINE QUALITY CRAFTERS</span>,"
                        gc_BodyToDisplay += "        bid on <span class=mainbluebold>EXCITING SILENT AUCTION BASKETS</span>, try your luck at our "
                        gc_BodyToDisplay += "        <span class=mainbluebold>AMAZING RAFFLE ITEMS</span>, have your kids shop at <span class=mainbluebold>REINDEER LANE</span>, indulge in "
                        gc_BodyToDisplay += "        <span class=mainbluebold>FABULOUS FOOD FROM THE CHRISTMAS CAFE</span>, try some <span class=mainbluebold>SWEETS FROM THE                              "
                        gc_BodyToDisplay += "        BAKE SALE</span> and even take home a cake from the ever <span class=mainbluebold>FESTIVE CAKE WALK!!</span>               "
                        gc_BodyToDisplay += "        <br><br>All of the proceeds from the Christmas Attic go toward supporting Corpus Christi    "
                        gc_BodyToDisplay += "        School kids and their teachers, so please pass the word and help us to make this    "
                        gc_BodyToDisplay += "        our biggest event ever!"

                        gc_BodyToDisplay += "    </td>"
                        gc_BodyToDisplay += "</tr>"
                        break;
                    }

        case 'craftersbutton':
        case 'crafters':
                    {
                        gc_BodyToDisplay += "<tr>"
                        gc_BodyToDisplay += "    <td><img src='images/blank.gif' height=1></td>"
                        gc_BodyToDisplay += "    <td class=main>"

                        gc_BodyToDisplay += "        If you have a craft to sell, we have the space for you to sell from! Our next event"
                        gc_BodyToDisplay += "        is November 5, 2011 and we are currently taking registration. "
                      //gc_BodyToDisplay += "        <span class=mainbluebold>If you sign up by September 1, 2011 you will receive a $10 discount.</span>
                        gc_BodyToDisplay += "        <span class=mainbluebold>So register today!</span>"
                        gc_BodyToDisplay += "        <br><br>"

                        gc_BodyToDisplay += "        <span class=mainbold>CRAFTER FEES</span>"
                        gc_BodyToDisplay += "        <table border=0 cellspacing=5>"
                        gc_BodyToDisplay += "            <tr>"
                        gc_BodyToDisplay += "                <td nowrap>8' x 6' space (size approximate)</td>"
                        gc_BodyToDisplay += "                <td nowrap>$85.00</td>"
                        gc_BodyToDisplay += "            </tr>"
                        gc_BodyToDisplay += "            <tr>"
                        gc_BodyToDisplay += "                <td nowrap>Additional 8' x 6' space</td>"
                        gc_BodyToDisplay += "                <td nowrap>$65.00</td>"
                        gc_BodyToDisplay += "            </tr>"
                        gc_BodyToDisplay += "            <tr>"
                        gc_BodyToDisplay += "                <td nowrap>8' x 3' table rental (or save $ and bring your own)</td>"
                        gc_BodyToDisplay += "                <td nowrap>$10.00</td>"
                        gc_BodyToDisplay += "            </tr>"
                        gc_BodyToDisplay += "            <tr>"
                        gc_BodyToDisplay += "                <td nowrap>Electricity (against wall or center aisle)</td>"
                        gc_BodyToDisplay += "                <td nowrap>$10.00</td>"
                        gc_BodyToDisplay += "            </tr>"
                        gc_BodyToDisplay += "            <tr>"
                        gc_BodyToDisplay += "                <td nowrap>Returning Crafter Discount</td>"
                        gc_BodyToDisplay += "                <td nowrap>-$10.00</td>"
                        gc_BodyToDisplay += "            </tr>"
                        gc_BodyToDisplay += "        </table>"

                        gc_BodyToDisplay += "        <br>"

                        gc_BodyToDisplay += "        <span class=mainbluebold>You have two choices to register this year. </span>You may either print the registation form, like in previous years, fill it out by hand and submit via mail. Or new this year, you can register online (you will still need to submit your check via regular mail)."

                        gc_BodyToDisplay += "        <br><br>"

                        gc_BodyToDisplay += "        <a href='forms/CACrafterReg11.pdf' target=_blank>PRINT REGISTRATION FORM</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;<a href='ca.registration.html'>ONLINE REGISTRATION</a>"

                        gc_BodyToDisplay += "        <br><br>"

                        gc_BodyToDisplay += "        Email Sharon with any questions: <a href='mailto:sharon_zimbabwe@hotmail.com?subject=>>Christmas%20Attic%202011'>sharon_zimbabwe@hotmail.com</a>"

                        gc_BodyToDisplay += "    </td>"
                        gc_BodyToDisplay += "</tr>"
                        gc_TopMenuItemToHighlight = "crafters";
                        break;
                    }

        case 'registration':
                    {
                        gc_BodyToDisplay += "<tr>"
                        gc_BodyToDisplay += "    <td><img src='images/spacer.gif' height=1></td>"
                        gc_BodyToDisplay += "    <td class=main>"
                        gc_BodyToDisplay += "        If you have a craft to sell, we have the space for you to sell from! Our next event"
                        gc_BodyToDisplay += "        is November 5, 2011 and we are currently taking registrations. After you've read the rules and regulations below, please complete the registration below and submit your check for the calculated fees."
                      //gc_BodyToDisplay += "        <span class=mainblue>If you sign up by September 1, 2011 you will receive a $10 discount.</span>"
                        gc_BodyToDisplay += "        <span class=mainblue>So register today!</span>"
                        gc_BodyToDisplay += "        <br><br>"

                        gc_BodyToDisplay += "        <b>Please note the following rules and regulations about this year's Christmas Attic:</b><br>"
                        gc_BodyToDisplay += "            <ul class=smalltext>"

                        gc_BodyToDisplay += "            <li><span class=smallblue>LOCATION:</span> Corpus Christi School at St. Anthony's Catholic Church, 3301 Glen Carlyn Road, Falls Church, VA - at the corner of Rt 7"
                        gc_BodyToDisplay += "            (Leesburg Pike) and Glen Carlyn Road"
                        gc_BodyToDisplay += "        <br>"

                        gc_BodyToDisplay += "            <li><span class=smallblue>ENTRY DEADLINE:</span> October 21, 2011. Any crafters whose checks do not clear one week prior to the show date will not be allowed to"
                        gc_BodyToDisplay += "            participate. Space is limited - awarded on a first come basis."
                        gc_BodyToDisplay += "        <br>"

                        gc_BodyToDisplay += "            <li><span class=smallblue>CRAFTS:</span> All hand-crafted items are welcome. We are limiting jewelers' spaces to 15, so that crafters' sales opportunities are maximized."
                        gc_BodyToDisplay += "        <br>"

                        gc_BodyToDisplay += "            <li><span class=smallblue>TABLES:</span> You may rent a display table, but please bring your own table coverings, set-ups and extension cords."
                        gc_BodyToDisplay += "        <br>"

                        gc_BodyToDisplay += "            <li><span class=smallblue>SET-UP:</span> Doors open at 7:00 a.m. for set-up. Event is open to the public from 9:00 a.m. to 3:00 p.m. Items not removed by 5 p.m. become"
                        gc_BodyToDisplay += "            St. Anthony's property."
                        gc_BodyToDisplay += "        <br>"

                        gc_BodyToDisplay += "            <li><span class=smallblue>PROCEEDS:</span> All proceeds from space rentals, silent auctions and raffles go to support the students at Corpus Christi School."
                        gc_BodyToDisplay += "        <br>"

                        gc_BodyToDisplay += "            <li><span class=smallblue>LIABILITY:</span> In consideration for being allowed to participate in this event, crafters assume the risk of any loss or damage associated with such"
                        gc_BodyToDisplay += "            participation and agree that neither Corpus Christi School, PTO, St. Anthony's Parish nor any of their employees, agents or volunteers may be"
                        gc_BodyToDisplay += "            held liable for any damage or loss of any type, whether to person, property or economic damages, beyond return of any registration fees paid."
                        gc_BodyToDisplay += "        <br>"

                        gc_BodyToDisplay += "            <li><span class=smallblue>CHECKS:</span> Please make checks payable to Corpus Christi PTO. Send check and completed form (below) to Sharon/Christmas Attic,"
                        gc_BodyToDisplay += "            4205 Wynnwood Drive, Annandale, VA 22003. Your cleared, cancelled check is confirmation of registration."
                        gc_BodyToDisplay += "        <br>"

                        gc_BodyToDisplay += "            <li><span class=smallblue>DONATIONS:</span> If you would like to donate an item for the silent auction or raffle, please contact Sharon Williams at 571-239-8629."
                        gc_BodyToDisplay += "        <br><br>"

                        gc_BodyToDisplay += "            </ul>"
                        gc_BodyToDisplay += "        <span class=mainbold>CRAFTER REGISTRATION FORM 2011</span><br> Please register online using the form below and then submit a check for the total of crafter provisions that you require.  Your space will be reserved once your check is received."

                        gc_BodyToDisplay += "            <form name='form1' method='post' action='ca.sendmail.asp' onSubmit='return verifyFormCrafter(this);'>"
                        gc_BodyToDisplay += "                <input type='hidden' name='formName' value='Crafter'>"
                        gc_BodyToDisplay += "                <table cellspacing=0>"
                        gc_BodyToDisplay += "                    <tr>"
                        gc_BodyToDisplay += "                        <td><p class=formtext>First Name    <br><input class=fieldtext type='text' name='nameFirst' size='30'></p></td>"
                        gc_BodyToDisplay += "                        <td><img src='images/spacer.gif' width=20></td>"
                        gc_BodyToDisplay += "                        <td><p class=formtext>Phone         <br><input class=fieldtext type='text' name='phone'     size='30'></p></td>"
                        gc_BodyToDisplay += "                    </tr>"

                        gc_BodyToDisplay += "                    <tr>"
                        gc_BodyToDisplay += "                        <td><p class=formtext>Last Name     <br><input class=fieldtext type='text' name='nameLast'  size='30'></p></td>"
                        gc_BodyToDisplay += "                        <td><img src='images/spacer.gif' width=20></td>"
                        gc_BodyToDisplay += "                        <td><p class=formtext>Email         <br><input class=fieldtext type='text' name='email'     size='30'></p></td>"
                        gc_BodyToDisplay += "                    </tr>"
                        gc_BodyToDisplay += "                    <tr>"
                        gc_BodyToDisplay += "                        <td><p class=formtext>Street Address <br><input class=fieldtext type='text' name='address'  size='30'></p></td>"
                        gc_BodyToDisplay += "                        <td><img src='images/spacer.gif' width=20></td>"
                        gc_BodyToDisplay += "                        <td><p class=formtext>Type of Handmade Craft  <br><input class=fieldtext type='text' name='craftType' size='30'></p></td>"
                        gc_BodyToDisplay += "                    </tr>"
                        gc_BodyToDisplay += "                </table>"

                        gc_BodyToDisplay += "                <span class=formtext>City             <br><input class=fieldtext type='text' name='city'        size='30'><br>"
                        gc_BodyToDisplay += "                                     State            <br><input class=fieldtext type='text' name='state'       size='30'><br>"
                        gc_BodyToDisplay += "                                     Zip Code         <br><input class=fieldtext type='text' name='zip'         size='30'><br>"
                        gc_BodyToDisplay += "                                     Comments or Special Needs<br><textarea class=fieldtext name='comments' rows=7 cols=70></textarea><br>"
                        gc_BodyToDisplay += "                </span>"
                        gc_BodyToDisplay += "                <table border=0 cellspacing=5 class=smalltext>"
                        gc_BodyToDisplay += "                    <tr class=mainbold>"
                        gc_BodyToDisplay += "                        <td>Crafter Provisions</td>"
                        gc_BodyToDisplay += "                        <td>Fees</td>"
                        gc_BodyToDisplay += "                        <td>Quantity</td>"
                        gc_BodyToDisplay += "                        <td>Total</td>"
                        gc_BodyToDisplay += "                    </tr>"
                        gc_BodyToDisplay += "                    <tr>"
                        gc_BodyToDisplay += "                        <td>8' x 6' space (size approximate)</td>"
                        gc_BodyToDisplay += "                        <td>$85.00</td><td><select disabled name='qtySpace' class=formtext><option selected value='1'>1 Space</option></select></td><td>$<input class=formtext readonly type='text' name='totSpaces' value='85.00'       size='5'></td>"
                        gc_BodyToDisplay += "                    </tr>"
                        gc_BodyToDisplay += "                    <tr>"
                        gc_BodyToDisplay += "                        <td>Additional 8' x 6' space</td>"
                        gc_BodyToDisplay += "                        <td>$65.00</td><td><select name='qtySpaceAddl'   onChange='document.form1.totAddlSpaces.value=this.options[this.selectedIndex].value*65.00;recalculateRegTotal();' class=formtext><option selected value='0'>0 Addl Spaces</option><option value='1'>1 Addl Space</option><option value='2'>2 Addl Spaces</option><option value='3'>3 Addl Spaces</option><option value='4'>4 Addl Spaces</option><option value='5'>5 Addl Spaces</option></select></td><td>$<input class=formtext readonly type='text' name='totAddlSpaces' value='0.00'       size='5'></td>"
                        gc_BodyToDisplay += "                    </tr>"
                        gc_BodyToDisplay += "                    <tr>"
                        gc_BodyToDisplay += "                        <td>8' x 3' table rental (or save $ and bring your own)</td>"
                        gc_BodyToDisplay += "                        <td>$10.00</td><td><select name='qtyTable'       onChange='document.form1.totTables.value=this.options[this.selectedIndex].value*10.00    ;recalculateRegTotal();' class=formtext><option selected value='0'>0 Tables</option><option value='1'>1 Tables</option><option value='2'>2 Tables</option><option value='3'>3 Tables</option><option value='4'>4 Tables</option><option value='5'>5 Tables</option></select></td><td>$<input class=formtext readonly type='text' name='totTables' value='0.00'       size='5'></td>"
                        gc_BodyToDisplay += "                    </tr>"
                        gc_BodyToDisplay += "                    <tr>"
                        gc_BodyToDisplay += "                        <td>Electricity (against wall or center aisle)</td>"
                        gc_BodyToDisplay += "                        <td>$10.00</td><td><select name='qtyElectricity' onChange='document.form1.totElectricity.value=this.options[this.selectedIndex].value*10.00;recalculateRegTotal();' class=formtext><option selected value='0'>No</option><option value='1'>Yes</option></select></td><td>$<input class=formtext readonly type='text' name='totElectricity' value='0.00'       size='5'></td>"
                        gc_BodyToDisplay += "                    </tr>"
                        gc_BodyToDisplay += "                    <tr>"
                        gc_BodyToDisplay += "                        <td>Returning Crafter Discount</td>"
                        gc_BodyToDisplay += "                        <td nowrap>-$10.00</td><td><select name='qtyReturningDiscount' onChange='document.form1.totReturningDiscount.value=this.options[this.selectedIndex].value*-10.00;recalculateRegTotal();' class=formtext><option selected value='0'>No</option><option value='1'>Yes</option></select></td><td>$<input class=formtext readonly type='text' name='totReturningDiscount' value='0.00'       size='5'></td>"
                        gc_BodyToDisplay += "                    </tr>"
                      //gc_BodyToDisplay += "                    <tr class=smallblue>"
                      //gc_BodyToDisplay += "                        <td class=smallblue>Register before Sept 1st to receive $10 Discount!</td>"
                      //gc_BodyToDisplay += "                        <td class=smallblue>-$10.00</td><td class=smallblue>&nbsp;</td><td class=smallblue>$<input class=smallblue readonly type='text' name='totEarlyDiscount'     value='-10.00'       size='5'></td>"
                      //gc_BodyToDisplay += "                    </tr>"
                        gc_BodyToDisplay += "                    <tr class=mainbold>"
                        gc_BodyToDisplay += "                        <td>&nbsp;</td>"
                        gc_BodyToDisplay += "                        <td>&nbsp;</td>"
                        gc_BodyToDisplay += "                        <td>&nbsp;</td>"
                        gc_BodyToDisplay += "                        <td class=mainbold nowrap>----------</td>"
                        gc_BodyToDisplay += "                    </tr>"
                        gc_BodyToDisplay += "                    <tr class=mainbold>"
                        gc_BodyToDisplay += "                        <td>TOTAL CRAFTER FEES"
                        gc_BodyToDisplay += "                        <td>&nbsp;</td>"
                        gc_BodyToDisplay += "                        <td>&nbsp;</td>"
                        gc_BodyToDisplay += "                        <td>$<input class=fieldtext readonly type='text' name='totalCrafterFees' value='0.00'       size='5'></td>"
                        gc_BodyToDisplay += "                    </tr>"
                        gc_BodyToDisplay += "                    <tr  class=smalltext>"
                        gc_BodyToDisplay += "                        <td colspan=4><br><input type='checkbox' name='rulesConfirmation'> I have read and agree to the craft fair rules and regulations described above.  </td>"
                        gc_BodyToDisplay += "                    </tr>"
                        gc_BodyToDisplay += "                    <tr  class=smalltext>"
                        gc_BodyToDisplay += "                        <td colspan=4><br><input type='checkbox' name='extraChairRequest'> Two chairs are provided for every crafter space. Please check here if you would like two additional chairs for your space. </td>"
                        gc_BodyToDisplay += "                    </tr>"
                        gc_BodyToDisplay += "                </table>"

                        gc_BodyToDisplay += "                <script language='JavaScript'>   recalculateRegTotal(); </script>"

                        gc_BodyToDisplay += "                <p><input type='submit' name='Submit' value='Submit'></p>"

                        gc_BodyToDisplay += "                <p class=mainbluebold>"
                        gc_BodyToDisplay += "                    Thank you for your interest, we look forward to seeing you at this year's Christmas Attic!"
                        gc_BodyToDisplay += "                </p>"

                        gc_BodyToDisplay += "            </form>"

                        gc_BodyToDisplay += "        Email Sharon with any questions: <a href='mailto:sharon_zimbabwe@hotmail.com?subject=>>Christmas%20Attic%202011'>sharon_zimbabwe@hotmail.com</a>"

                        gc_BodyToDisplay += "    </td>"
                        gc_BodyToDisplay += "</tr>"
                        break;
                    }

        case 'auctionbutton':
        case 'auction':
                    {
                        gc_BodyToDisplay += "<tr>"
                        gc_BodyToDisplay += "    <td><img src='images/spacer.gif' height=1></td>"
                        gc_BodyToDisplay += "    <td class=main>"

                        //gc_BodyToDisplay += "        Once again this year, the students and teachers of Corpus Christi School will be    "
                        //gc_BodyToDisplay += "        putting together fantastic themed baskets for the Silent Auction. In past years we  "
                        //gc_BodyToDisplay += "        have had everything from ice cream themes to home renovation to vacation            "
                        //gc_BodyToDisplay += "        getaways! The classes compete on which basket will get the most bids, so each       "
                        //gc_BodyToDisplay += "        year you are guaranteed some excellent choices for your bidding fever!              "

                        //gc_BodyToDisplay += "        <br><br>"

                        //gc_BodyToDisplay += "        Also, if you have any popular items to donate (e.g., usage of vacation home, crafted furniture, unused popular electronics, etc.), please let us know. Of course, your donation is tax deductible!"
                        gc_BodyToDisplay += "        The silent aution is one of the high-lights of our annual program. If you have any popular items to donate (e.g., usage of vacation home, crafted furniture, unused popular electronics, etc.), please let us know. Of course, your donation is tax deductible!"
                        gc_BodyToDisplay += "        <br><br>"

                        gc_BodyToDisplay += "        Check back mid-October to see what this year's themes will be and to find out              "
                        gc_BodyToDisplay += "        the latest and greatest in our raffle selection! <a href='ca.auctionitems.html' class=mainblue>Click here to see this year's auction items!</a> "

                        gc_BodyToDisplay += "        This year's Christmas Attic fair is going to be another one for the history books. Take a look at the fantastic items that have been donated (thank you, thank you, thank you) just waiting for your bid:"
                        gc_BodyToDisplay += "        <br><br>"

                        gc_BodyToDisplay += "        Email Jennifer with any questions: <a href='mailto:jenbeuse@yahoo.com?subject=>>Christmas%20Attic%202011'>jenbeuse@yahoo.com</a>"

                        gc_BodyToDisplay += "    </td>"
                        gc_BodyToDisplay += "    <td>"
                        gc_BodyToDisplay += "        <img src='images/spacer.gif' width=10 height=1>"
                        gc_BodyToDisplay += "    </td>"
                        gc_BodyToDisplay += "</tr>"
                        gc_TopMenuItemToHighlight = "auction";
                        break;
                    }

        case 'auctionitems':
                    {
                        gc_BodyToDisplay += "<tr>"
                        gc_BodyToDisplay += "    <td><img src='images/spacer.gif' height=1></td>"
                        gc_BodyToDisplay += "    <td class=main>"

                        gc_BodyToDisplay += "        This year's Christmas Attic fair is going to be another one for the history books. Take a look at the fantastic items that have been donated (thank you, thank you, thank you) just waiting for your bid:"

                        //<!--- Begin Time Slots for Auction Items --->

                    /// gc_BodyToDisplay += "                <br><br><div id='stufffindercontainer' style='border-bottom: 3px solid #009999; xborder-left: 1px solid #009999; xborder-right: 1px solid #009999;'>"



                    /// gc_BodyToDisplay += "                List of Auction items, Raffle items, Classroom Baskets, and other great items coming soon!"



                    ///
                    /// gc_BodyToDisplay += "                <table class='bgwhite' align='center' width=100% cellpadding=0 cellspacing=0>"
                    ///
                    /// gc_BodyToDisplay += "                <tr class='bggreen smallwhite' ><td align=center ><img src='images/blank.gif' height=4></td></tr>"
                    /// gc_BodyToDisplay += "                <tr class='bggreen smallwhite' ><td align=center >Silent Auction Items - Bid before your favorite item closes!</td></tr>"
                    /// gc_BodyToDisplay += "                <tr class='bggreen smallwhite' ><td align=center ><img src='images/blank.gif' height=4></td></tr>"
                    /// gc_BodyToDisplay += "                <tr ><td >"
                    /// gc_BodyToDisplay += "                        <table border=0 width='100%' cellpadding=5>"
                    /// gc_BodyToDisplay += "                            <tr class='smalltext' ><td>12:00 pm"
                    /// gc_BodyToDisplay += "        <ul >"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Eleanor Powell Geometric Paintings - blue and white geometric painting - Total Value: $225</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >German Gourmet - 2 $50 gift certificates $100 value</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >A Step in Time - chimney inspection, 2 certs $65 value each $130 total value</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Health & Wellness Basket -  - Total Value: $90</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Maid Brigade - $50 gift certificate</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >teas & Health & Wellness Library vol 1&2 -  - Total Value: $50</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >VIP Parking #2 - 2nd & 3rd Qtr TOP 2 BIDS - Total Value: $Priceless</li>"
                    /// gc_BodyToDisplay += "        </ul></td></tr>"
                    /// gc_BodyToDisplay += "                            <tr class='smalltext' ><td>12:15 pm"
                    /// gc_BodyToDisplay += "        <ul >"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Franciscan Sisters of the Eucharist - 'A Pie a Month' for 9 months starting in December - Total Value: $Priceless</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Candace Mara Jewelry - 'Jewelry of the Week' 7 matching bracelets and earrings - Total Value: $350</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Mary Kay Basket -  - Total Value: $152</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Crystal City Sports Pub - $50 gift certificates $100 value</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Le's Engravers - $100 gift certificate</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Trader Joes - Basket worth $50</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Craven Nursery - 3 ceramic halloween decorations $36 value</li>"
                    /// gc_BodyToDisplay += "        </ul></td></tr>"
                    /// gc_BodyToDisplay += "                            <tr class='smalltext' ><td>12:30 pm"
                    /// gc_BodyToDisplay += "        <ul >"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >McIntosh Family - tiffany earrings - Total Value: $125</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >B&O Railroad Museum - 4 free admissions $56</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Outback Steakhouse - $45 gift certificate (Tysons) & 13 bloomin onions free $123 value</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Paradise Pen - $25 gift certificate</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Meadows Farms - $20 gift certificate</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >VIP Parking #4 - 4th Qtr - Total Value: $Priceless</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >VIP Seating for Kindergarten Grad - Top 2 Bids - Total Value: $Priceless</li>"
                    /// gc_BodyToDisplay += "        </ul></td></tr>"
                    /// gc_BodyToDisplay += "                            <tr class='smalltext' ><td>12:45 pm"
                    /// gc_BodyToDisplay += "        <ul >"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Campbell & Ferrara - 50% off woody trees & Shrubs installed up to $2000.00</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Dr. Fleming DDS orthodontist - free consultation, xrays and diagnostic records $450 value</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Crowne Plaza Tysons Corner - 1 night stay/ 2 breakfasts & Dinner for 2 - Total Value: $245</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Wintergreen Resort - 2 mid-week recreation coupons $180 total value</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Williams Family - Bermuda Scene print - Total Value: $75</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Williams Family - Bermuda Scene print - Total Value: $75</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Irelands 4 Provinces - Sunday Brunch for 4 $60 value</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Staples - 2 - $25 gift cards</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Williams Family - Bermuda Scene print small - Total Value: $45</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Babylon Futbol Caf‚ - $40 gift certificate</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Sign of the Whale - $35 gift certificate</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >First Watch Daytime Caf‚ - 2 - Breakfast, Brunch or Lunch for 2 $30 value</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Lynskey Family - 2 AMC Movie tickets - Total Value: $20</li>"
                    /// gc_BodyToDisplay += "        </ul></td></tr>"
                    /// gc_BodyToDisplay += "                            <tr class='smalltext' ><td>1:00 pm"
                    /// gc_BodyToDisplay += "        <ul >"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Merchants Tire - 12 oil changes - Total Value: $240</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >AMF Annandale Lanes - 2-10 free games cards and 1 family fun pack - Total Value: $160</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Sun & Moon Yoga Studio - certificate for 10 free yoga classes - Total Value: $150</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >John Paulson Productions LLC - Les Paul autographed DVD of 'Les Paul Chasing Sound' - Total Value: $100</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Let's Dish! - $100 gift certificate plus 9 - free signature dessert coupons</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Christmas basket -  - Total Value: $50</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Dogfish Head Alehouse - $25 gift certificates</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Homemade Gourmet Basket -  - Total Value: $40</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Paulson Family - $25 BP gas card</li>"
                    /// gc_BodyToDisplay += "        </ul></td></tr>"
                    /// gc_BodyToDisplay += "                            <tr class='smalltext' ><td>1:15 pm"
                    /// gc_BodyToDisplay += "        <ul >"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >The Ellig Family - 7 days/ 7 nights in 3 BR condo at Garden City Beach South Carolina $1400 value</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Panera Bread - 2-Bagels for a Year certificates $270 total value</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Annandale Boys & Girls Club - 2 Winter sports registrations Valued $118</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Washington National - Baseball Autographed by Wily Mo Pena - Total Value: $90</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >The Word Among Us - Devotional Basket - Total Value: $76</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >The Word Among Us & Pascal Lamb - Meditation Basket - Total Value: $73</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Fuddruckers - Dinner for 2 - Total Value: $50</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Metro 29 Diner - Dinner for 2 - Total Value: $50</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Old Hickory Grille - $50 gift certificate</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Red Lobster - 8 - $5 Gift Certificates</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Frozen Dairy Bar - $25 gift Card</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Anthony's Restaurant - $20 gift certificate</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Olive Garden - $20 gift certificate (Tysons)</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >VIP Parking #6 - 1st Qtr - Total Value: $Priceless</li>"
                    /// gc_BodyToDisplay += "        </ul></td></tr>"
                    /// gc_BodyToDisplay += "                            <tr class='smalltext' ><td>1:30 pm"
                    /// gc_BodyToDisplay += "        <ul >"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Holiday Inn Capitol - 2 night stay/ 4 american breakfasts/free parking $540</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Westfields Golf Club - 4 Rounds of Golf, Cart & Range Balls, good Mon-Thurs and hat - Total Value: $340</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Arena Stage - 2 tickets to Christmas Carol 1941 - Total Value: $110</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Flynn & O'Hara Uniform Company - $100 gift certificate</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >La Rue Restaurant - $100 gift certificate</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Mason District Little League - 1 registration $95 value</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Potomac Riverboat Company - 2 Washington by Water Monuments Cruise ticket $48 value</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Merrifield Garden Center - $25 gift card</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Day with Fr. Baez - Tour or Naval Academy in Annapolis - Total Value: $Priceless</li>"
                    /// gc_BodyToDisplay += "        </ul></td></tr>"
                    /// gc_BodyToDisplay += "                            <tr class='smalltext' ><td>1:45 pm"
                    /// gc_BodyToDisplay += "        <ul >"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Walt Disney World - 4 - One Day Magic your way park hopper passes $464 value</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Sleepy Hollow Recreation Association - $200 gift certificate towards membership</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Bricks Pizza - 6 free pizza's - Total Value: $92</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Reston Limousine - Virginia Wine Tour for 2 - Total Value: $70</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >New Forest Valet - $50 gift certificate</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Great American Restaurants - $25 gift certificate</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Lynskey Family - 2 AMC Movie tickets - Total Value: $20</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >VIP Parkig #5 - 4th & 1st Qtr - Total Value: $Priceless</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >VIP Seating 8th Grade Graduation - Top 2 Bids - Total Value: $Priceless</li>"
                    /// gc_BodyToDisplay += "        </ul></td></tr>"
                    /// gc_BodyToDisplay += "                            <tr class='smalltext' ><td>2:00 pm"
                    /// gc_BodyToDisplay += "        <ul >"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Bermingham Photography - $1000 credit towards a family portrait</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Lyn Chamness & Pat McGee - 4 nights in 3 bedroom townhouse at Rehoboth Beach, Deleware $600 value</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Panera Bread - 2-Bagels for a Year certificates $270 total value</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >German Gourmet - 2 $50 gift certificates $100 value</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Crystal City Sports Pub - $50 gift card</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Dogfish Head Alehouse - $25 gift card</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Dinner with Fr. Grinnell - Dinner for 2 with Fr. Top 3 Bids - Total Value: $Priceless</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >VIP Parking #1 - 2nd Qtr - Total Value: $Priceless</li>"
                    /// gc_BodyToDisplay += "        </ul></td></tr>"
                    /// gc_BodyToDisplay += "                            <tr class='smalltext' ><td>2:15 pm"
                    /// gc_BodyToDisplay += "        <ul >"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Whitetail Resort - 2 complete First Class beginner Learn to Ski or Snowboard Packages - Total Value: $156</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Annandale Boys & Girls Club - 2 Winter sports registrations Valued $118</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >A Step in Time - chimney inspection, 2 certs $65 value each $130 total value</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Teal Center for Therapeutic Bodywork - $85 gift certificate</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >La Promessa Italian Restaurant - $50 gift certificate</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Mint Thai Cuisine - 5 - $10 gift cards $50 value</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Pho Cyclo - $40 gift certificate</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Sakura Restaurant - $40 gift certificate</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Peking Gourmet Inn - One Peking Gourmet Inn $37 value</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Jasmine Garden - $20 gift certificate</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Mytho's Restaurant - $20 gift certificate</li>"
                    /// gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >VIP Parking #3 - 3rd & 4th Qtr - Total Value: $Priceless</li>"
                    /// gc_BodyToDisplay += "        </ul></td></tr>"
                    /// gc_BodyToDisplay += "                        </table>"
                    ///
                    /// gc_BodyToDisplay += "                </td></tr>"
                    /// gc_BodyToDisplay += "                </table>"
                    ///
                    /// gc_BodyToDisplay += "                </div>"
                    ///
                    /// //<!--- End Time Slots for Auction Items --->
                    ///
                    ///
                    ///
                    /// gc_BodyToDisplay += "                <br><br>"
                    ///
                    ///
                        //<!--- Begin Silent Auction Items --->

                        gc_BodyToDisplay += "                <div id='stufffindercontainer' style='border-bottom: 3px solid #009999; xborder-left: 1px solid #009999; xborder-right: 1px solid #009999;'>"

                        gc_BodyToDisplay += "                <table class='bgwhite' align='center' width=100% cellpadding=0 cellspacing=0>"

                        gc_BodyToDisplay += "                <tr class='bggreen smallwhite' ><td align=center ><img src='images/blank.gif' height=4></td></tr>"
                        gc_BodyToDisplay += "                <tr class='bggreen smallwhite' ><td align=center >Thank you to all our donors for these awesome Silent Auction Items</td></tr>"
                        gc_BodyToDisplay += "                <tr class='bggreen smallwhite' ><td align=center ><img src='images/blank.gif' height=4></td></tr>"
                        gc_BodyToDisplay += "                <tr ><td >"
                        gc_BodyToDisplay += "                        <table border=0 width='100%' cellpadding=5>"
                        gc_BodyToDisplay += "                            <tr class='smalltext' ><td>"
                        gc_BodyToDisplay += "        <ul >"
                      //gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Check back soon!</li>"

                        //gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >JNA Medical Transport - $150 sponsorship</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Corpus Christi School - Priority seating at the Christmas Concert (Priceless)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Corpus Christi School - Priority Parking at the Christmas Concert (Priceless)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Corpus Christi School - Priority seating at the Kindergarten Graduation (Priceless)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Corpus Christi School - Priority Parking at the Kindergarten Graduation (Priceless)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Corpus Christi School - Priority seating at the 8th Grade Graduation (Priceless)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Corpus Christi School - Priority Parking at the 8th Grade Graduation (Priceless)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Corpus Christi School - 6 VIP Parking Spots (Priceless)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Corpus Christi School - VIP Parking 2nd, 3rd, 4th Quarter 2011/2012 PLUS 1st Quarter 2012/2013 (Priceless)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Corpus Christi School - VIP Parking 2nd, 3rd, 4th Quarter 2011/2012 (Priceless)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Corpus Christi School - VIP Parking 2nd & 3rd Quarter 2011/2012 (Priceless)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Corpus Christi School - VIP Parking 4th Quarter 2011/2012 (Priceless)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Corpus Christi School - VIP Parking 2nd Quarter 2011/2012 (Priceless)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Corpus Christi School - VIP Parking 3rd & 4th Quarter 2011/2012 (Priceless)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Corpus Christi School - VIP Parking 4th Quarter 2011/2012 PLUS 1st Quarter 2012/2013 (Priceless)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Corpus Christi School - VIP Parking 1st Quarter 2012/2013 School Year (Priceless)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Franciscan Sisters of the Eucharist - Dinner for 6 with sisters (Priceless)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Mr. Garcia - Principal for a Day & lunch with Mr. Garcia one day 1st quarter (Priceless)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Mrs. Bean & Mrs. Quintero - Trip for 1 child and a friend to Chuck-E-Cheeses (Priceless)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Mrs. Nande & Mrs. Cheriathundam - Homemade Indian Dinner prepared and brought to your house (Priceless)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Mrs. Stich - Vice Principal for a day (includes travel to and from CCE too! (Priceless)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Mrs. Stich - Lunch with Vice Principal for 1 student & 2 friends (she will travel to the CCE too!) (Priceless)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Ellig Family - Stay at condo Garden City Beach, SC 1 week ($1500.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >McGee Family - 4 night stay in Rehoboth ($625.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Falls Church Chiropractic - Chiropractic treatment procedure ($350.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Shakespeare Theater - Two (2) tickets to any mainstage show in our 2011-2012 Season and a $50 gift card to ThinkFoodGroup (Jose Andres restaurant group). ($250.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Red Fox Inn - 1 night stay for 2+ breakfast ($225.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Absolute Carpet Care - Giftcard & carpet cleaner solution ($200.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Mrs. Matz - two 2 hour Spanish tutoring sessions ($200.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Olan Mills - 3 Pose Package ($200.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Sam Jacknin, Green Dot Realty - Moonbounce Rental ($200.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Sun & Moon Yoga Studio - 10 yoga classes ($200.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Jeannie Jewelers - Beautiful Red & White Fresh Water Pearl Necklace ($195.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Whitetail Ski Resort - 2 beginners learn-to-ski or learn-to-board packages ($172.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Mario Pareja & Family - acoustic guitar & stand ($150.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Annandale Boys and Girls Club-ABGC - 2 winter 2011/2012 or spring 2012  registrations ($140.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Ultrazone- The Ultimate Laser Adventure - Birthday Party for 10 ($130.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Six Flags America - 2 tickets ($114.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Shakespeare Theater - Four (4) tickets to Petrushka and four (4) Free Gelato cards from Pitango Gelato. ($110.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Holly Smith, Independent Consultant and Area Manager - Ginger Citrus Luxury Gift Basket from Arbonne International (Body Wash, Sugar Scrub,Body Butter, Shampoo & Conditioner) ($107.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Brian Anderson - Free photography session at your home or local setting.  Includes CD with all your photos for you to print.   ($100.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Dandy Restaurant Cruise Ships - Credit for 4 course dinner for 2 Potomac cruise ($100.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Flynn & O’Hara Uniform Company - Gift Card for uniform supplies ($100.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Friends of National Zoo - guided private tour for 10 ($100.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Maryann Mitchell, Beaded Treasures - 6 beaded jewelry items ($100.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Mrs. Kans - 10 hours of babysitting during Christmas season ($100.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Mrs. Pesce - Home cooked French meal prepared at your home, including a bottle of French wine ($100.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >The Teal Center for Therapeutic Bodywork Ltd. - 1 hr massage ($95.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Shenandoah Caverns - 2 chances to win Passes for family of 4 ($92.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Potomac Riverboat CO - 2 Washing Mon cruise tickets or 4 Pirate Cruise tix ($85.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Washington Nationals - Autographed Tom Gorzelanny baseball ($85.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Mrs. Bowes - Book & Music basket (raffi CDs, books, & instruments) ($75.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Mrs. Brown & Mrs. Rosal - Family Memory Basket (scrapbooking materials) ($75.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Mrs. Villanasco - Art basket ($75.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >New Forest Valet - Gift card for drycleaning ($75.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Pareja Family - Original work of cross stitch art by Mrs. Cristina Pareja ($75.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Reston Limousine - Winery tour for 2 ($70.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Synetic Theatre - 4 tix to The Rough Faced Girl ($60.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >UMS Martial Arts - 3 One month of Taekwondo or Hapkido classes with complimentary uniform ($60.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Dogfish Head Alehouse - 2 $25 Gift Cards ($50.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Metro 29 Diner - Giftcard for great food ($50.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Hurt Cleaners - Two $25 giftcards ($50.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >D.C. United / RFK Stadium - Autographed photo & Fan Pack ($45.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Skate Quest - 4 passes & skate rentals ($44.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >International Spy Museum - 2 passes to Spy Museum & 25% off Exclusive Even coupon ($36.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Father Kevin Walsh - Father Kevin will join you for dinner ($35.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Jaipur Royal Indian Cuisine (Fairfax) - $35 Giftcard ($35.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" > - Beautiful Antique Dolls & Furniture ($35.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Mrs. Bishop - Bath & Body Works Basket ($35.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Mr & Mrs. Schafer - Dinner for 2 Students at Silverado Restaurant with Mr. & Mrs. Schafer ($35.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Christine & Dan Rene - Gender Neutral baby basket ($30.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Clay Café Studios - 5 studio sessions ($30.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >First Watch - The Daytime Cafe - 2 brunch bucks, each good for meal for 2 ($30.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Harris Teeter Arlington - 3 $10 Giftcard ($30.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Mrs. Mackay and Mrs. Caballero's classes at the ECC - Gardening Basket ($30.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Anonymous - Handmade in Central America Covered Wagon Lamp ($30.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Georgetown Cupcakes - $29 Giftcard for yummy treats ($29.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Great American Restaurants - Giftcard for amazing food ($25.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Mrs. Schab - Panera lunch with Mrs. Schab ($25.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Mrs. Yakir, 5th Grade - Subway lunch for student & 2 friends with Mrs. Yakir in her classroom ($25.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Fairfax Ice Arena - 2 passes & skate rental ($22.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Bed Bath & Beyond - Giftcard for home stuff ($20.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Meadow Farms - Giftcard for great outdoor items ($20.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Original Pancake House - 2 $10 Giftcards ($20.00)</li>"
                        gc_BodyToDisplay += "            <li  onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#ffffff'\" >Paschal Lamb - Beautiful Crucifix ($15.00)</li>"
 
                        gc_BodyToDisplay += "        </ul></td></tr>"
                        gc_BodyToDisplay += "                        </table>"

                        gc_BodyToDisplay += "                </td></tr>"
                        gc_BodyToDisplay += "                </table>"

                        gc_BodyToDisplay += "                </div>"

                        //<!--- End Silent Auction Items --->

                        gc_BodyToDisplay += "                <br><br>"


                    /// //<!--- Begin Raffle Items --->
                    ///
                    /// gc_BodyToDisplay += "                <div id='stufffindercontainer' style='border-bottom: 3px solid #0066cc; xborder-left: 1px solid #0066cc; xborder-right: 1px solid #0066cc;'>"
                    ///
                    /// gc_BodyToDisplay += "                <table class='bgwhite' align='center' width=100% cellpadding=0 cellspacing=0>"
                    ///
                    /// gc_BodyToDisplay += "                <tr class='bgblue smallwhite' ><td align=center ><img src='images/blank.gif' height=4></td></tr>"
                    /// gc_BodyToDisplay += "                <tr class='bgblue smallwhite' ><td align=center >Kid's Raffle Items</td></tr>"
                    /// gc_BodyToDisplay += "                <tr class='bgblue smallwhite' ><td align=center ><img src='images/blank.gif' height=4></td></tr>"
                    /// gc_BodyToDisplay += "                <tr ><td >"
                    /// gc_BodyToDisplay += "                        <table border=0 width='100%' cellpadding=5>"
                    /// gc_BodyToDisplay += "                            <tr class='smalltext' ><td>"
                    /// gc_BodyToDisplay += "        <ul>"
                    ////gc_BodyToDisplay += "            <li onMouseOver=\"this.style.backgroundColor='#ffff00'\"  onMouseOut=\"this.style.backgroundColor='#ffffff'\">Check Back Very Soon!</li>"
                    ///
                    /// gc_BodyToDisplay += "            <li onMouseOver=\"this.style.backgroundColor='#ffff00'\"  onMouseOut=\"this.style.backgroundColor='#ffffff'\">Adventure Theatre - 2 tickets $20 value</li>"
                    /// gc_BodyToDisplay += "            <li onMouseOver=\"this.style.backgroundColor='#ffff00'\"  onMouseOut=\"this.style.backgroundColor='#ffffff'\">Build A Bear Workshop - 2 - $5 cub cash $10 value</li>"
                    /// gc_BodyToDisplay += "            <li onMouseOver=\"this.style.backgroundColor='#ffff00'\"  onMouseOut=\"this.style.backgroundColor='#ffffff'\">Blockbuster Video - 5 free favorite movie rentals</li>"
                    /// gc_BodyToDisplay += "            <li onMouseOver=\"this.style.backgroundColor='#ffff00'\"  onMouseOut=\"this.style.backgroundColor='#ffffff'\">Anonymous - china doll</li>"
                    /// gc_BodyToDisplay += "            <li onMouseOver=\"this.style.backgroundColor='#ffff00'\"  onMouseOut=\"this.style.backgroundColor='#ffffff'\">DC United - 1 Fan pack $20 value</li>"
                    /// gc_BodyToDisplay += "            <li onMouseOver=\"this.style.backgroundColor='#ffff00'\"  onMouseOut=\"this.style.backgroundColor='#ffffff'\">Vocelli Pizza - 4 free pizza's (Falls Church only) expires 12/31/07</li>"
                    /// gc_BodyToDisplay += "            <li onMouseOver=\"this.style.backgroundColor='#ffff00'\"  onMouseOut=\"this.style.backgroundColor='#ffffff'\">Vocelli Pizza - 4 free pizza's (Bailey's Crossroads only) expires 12/31/07</li>"
                    /// gc_BodyToDisplay += "            <li onMouseOver=\"this.style.backgroundColor='#ffff00'\"  onMouseOut=\"this.style.backgroundColor='#ffffff'\">Ultra Zone - 10 free game certificates. To be auctioned off 2 at a time</li>"
                    /// gc_BodyToDisplay += "        </ul></td></tr>"
                    /// gc_BodyToDisplay += "                        </table>"
                    ///
                    /// gc_BodyToDisplay += "                </td></tr>"
                    /// gc_BodyToDisplay += "                </table>"
                    ///
                    /// gc_BodyToDisplay += "                </div>"
                    ///
                    /// //<!--- End Raffle Items --->
                    ///
                    /// gc_BodyToDisplay += "                <br><br>"
                    ///
                    ///
                        //<!--- Begin Teacher Baskets --->

                     //    gc_BodyToDisplay += "                <div id='stufffindercontainer' style='border-bottom: 3px solid #ec0722; xborder-left: 1px #ec0722; xborder-right: 1px #ec0722;'>"
                      
                     //      gc_BodyToDisplay += "                <table class='bgwhite' align='center' width=100% cellpadding=0 cellspacing=0>"
                      
                     //      gc_BodyToDisplay += "                <tr class='bgred smallwhite' ><td align=center ><img src='images/blank.gif' height=4></td></tr>"
                     //      gc_BodyToDisplay += "                <tr class='bgred smallwhite' ><td align=center >Class Baskets</td></tr>"
                     //      gc_BodyToDisplay += "                <tr class='bgred smallwhite' ><td align=center ><img src='images/blank.gif' height=4></td></tr>"
                     //      gc_BodyToDisplay += "                <tr ><td >"
                     //      gc_BodyToDisplay += "                        <table border=0 width='100%' cellpadding=5>"
                     //      gc_BodyToDisplay += "                            <tr class='sffieldtitle' ><td nowrap>TEACHER NAME</td><td nowrap>CLASS</td><td nowrap>BASKET THEME</td></tr>"
                     //      gc_BodyToDisplay += "                            <tr class='smalltext'  align=center onMouseOver=\"this.style.backgroundColor='#bfe1fa'\" onMouseOut=\"this.style.backgroundColor='#f5f5f5'\" ><td nowrap colspan=3>Check back soon!</td></tr>"
                     //      //gc_BodyToDisplay += "                            <tr class='smalltext'  align=center onMouseOver=\"this.style.backgroundColor='#bfe1fa'\" onMouseOut=\"this.style.backgroundColor='#f5f5f5'\" ><td nowrap>Mrs Bowes</td><td nowrap>3 year old</td><td nowrap>Games and Puzzles</td></tr>"
                      
                     //      gc_BodyToDisplay += "                        </table>"
                      
                     //      gc_BodyToDisplay += "                <br />"
                     //      gc_BodyToDisplay += "                </td></tr>"
                     //      gc_BodyToDisplay += "                </table>"
                      
                     //      gc_BodyToDisplay += "                </div>"
                    
                        //<!--- End Teacher Baskets --->



                        gc_BodyToDisplay += "        <br>If you have any popular items to donate (e.g., usage of vacation home, crafted furntiture, unused popular electronics, etc.), please let us know. Of course, your donation is tax deductible!"
                        gc_BodyToDisplay += "        <br><br>"

                        //gc_BodyToDisplay += "        Check back mid-October to see what this year's themes will be and to find out the latest and greatest in our raffle selection!              "
                        gc_BodyToDisplay += "        Check back daily to find out the latest and greatest in our raffle selection!              "

                        gc_BodyToDisplay += "        <br><br>"

                        gc_BodyToDisplay += "        Email Jennifer with any questions: <a href='mailto:jenbeuse@yahoo.com?subject=>>Christmas%20Attic%202011'>jenbeuse@yahoo.com</a>"

                        gc_BodyToDisplay += "    </td>"
                        gc_BodyToDisplay += "</tr>"
                        gc_TopMenuItemToHighlight = "auction";
                        break;
                    }

        case 'volunteersbutton':
        case 'volunteers':
                    {
                        gc_BodyToDisplay += "<tr>"
                        gc_BodyToDisplay += "    <td><img src='images/spacer.gif' height=1></td>"
                        gc_BodyToDisplay += "    <td class=main>"

                        gc_BodyToDisplay += "        Our event would never be as successful without the help of so many wonderful"
                        gc_BodyToDisplay += "        volunteers. This year is no different! So check out the areas that we need help"
                        gc_BodyToDisplay += "        and give us a shout if you see something you'd like to do."

                        gc_BodyToDisplay += "        <br><ul class=main>"

                        gc_BodyToDisplay += "        <li><b>Silent Auction and Raffle:</b> We need people get donated items - big and small!</li>"
                        gc_BodyToDisplay += "        <li><b>Cooking for Cafe:</b> People love food like Quiche, Chili, Egg/Spring Rolls, Empadas, etc.</li>"
                        gc_BodyToDisplay += "        <li><b>Baking, Baking, Baking:</b> We will be running both a Cake Walk and a Bake sale,"
                        gc_BodyToDisplay += "                                      so will need lots of cakes and sweet baked goods.</li>"
                        gc_BodyToDisplay += "        <li><b>Set-up:</b> We need lots of help setting up for this event, so if you have time on"
                        gc_BodyToDisplay += "               Thursday, November 5th or Friday, November 6th, we could definitely use the help!</li>"
                        gc_BodyToDisplay += "        <li><b>Event Day:</b> On the day of the event - November 5th - we will need people to work"
                        gc_BodyToDisplay += "                        in the following areas in 2 hour increments:</li>"

                        gc_BodyToDisplay += "        <br><ul class=maintext>"

                        gc_BodyToDisplay += "            <li>Information/Ticket Booths</li>"
                        gc_BodyToDisplay += "            <li>Crafter Information booths</li>"
                        gc_BodyToDisplay += "            <li>Kids Crafts</li>"
                        gc_BodyToDisplay += "            <li>Kids Games</li>"
                        gc_BodyToDisplay += "            <li>Reindeer Lane</li>"
                        gc_BodyToDisplay += "            <li>Christmas Cafe</li>"
                        gc_BodyToDisplay += "            <li>Cake Walk</li>"
                        gc_BodyToDisplay += "            <li>Bake Sale</li>"
                        //gc_BodyToDisplay += "            <li>Silent Auction</li>"
                        gc_BodyToDisplay += "            <li>Raffle and Clean-up!</li>"

                        gc_BodyToDisplay += "        </ul></ul>"

                        gc_BodyToDisplay += "        <span class=mainbold>VOLUNTEER REGISTRATION FORM 2011</span><br> Adults and High-Schoolers, please volunteer online using the form below. Eighth-graders will be given Volunteer forms at school."

                        gc_BodyToDisplay += "            <form name='form2' method='post' action='ca.sendmail.asp' onSubmit='return verifyFormVolunteer(this);'>"
                        gc_BodyToDisplay += "                <input type='hidden' name='formName' value='Volunteer'>"
                        gc_BodyToDisplay += "                <table cellspacing=0>"
                        gc_BodyToDisplay += "                    <tr>"
                        gc_BodyToDisplay += "                        <td><p class=formtext>First Name    <br><input class=fieldtext type='text' name='nameFirst' size='30'></p></td>"
                        gc_BodyToDisplay += "                        <td><img src='images/spacer.gif' width=20></td>"
                        gc_BodyToDisplay += "                        <td><p class=formtext>Phone         <br><input class=fieldtext type='text' name='phone'     size='30'></p></td>"
                        gc_BodyToDisplay += "                    </tr>"

                        gc_BodyToDisplay += "                    <tr>"
                        gc_BodyToDisplay += "                        <td><p class=formtext>Last Name     <br><input class=fieldtext type='text' name='nameLast'  size='30'></p></td>"
                        gc_BodyToDisplay += "                        <td><img src='images/spacer.gif' width=20></td>"
                        gc_BodyToDisplay += "                        <td><p class=formtext>Email         <br><input class=fieldtext type='text' name='email'     size='30'></p></td>"
                        gc_BodyToDisplay += "                    </tr>"
                        gc_BodyToDisplay += "                    <tr>"
                        gc_BodyToDisplay += "                        <td><p class=formtext>Activity to help with<br>"
                        gc_BodyToDisplay += "                                <select name='activity' class=formtext>"
                        gc_BodyToDisplay += "                                    <option >I can help with Any Activity!</option>"
                        gc_BodyToDisplay += "                                    <option >Help get Donated Items for Silent Auction & Raffle</option>"
                        gc_BodyToDisplay += "                                    <option >Cook items for Cafe</option>"
                        gc_BodyToDisplay += "                                    <option >Bake items for Cake Walk and Bake Sale</option>"
                        gc_BodyToDisplay += "                                    <option >Friday, Nov 4th - Attic Set-up</option>"
                        gc_BodyToDisplay += "                                    <option >Saturday, Nov 5th -- No Activity Preference! --</option>"
                        gc_BodyToDisplay += "                                    <option >Saturday, Nov 5th - Crafter Unloading & Setup </option>"
                        gc_BodyToDisplay += "                                    <option >Saturday, Nov 5th - Information/Ticket Booths </option>"
                        gc_BodyToDisplay += "                                    <option >Saturday, Nov 5th - Crafter Information booths</option>"
                        gc_BodyToDisplay += "                                    <option >Saturday, Nov 5th - Kids Crafts               </option>"
                        gc_BodyToDisplay += "                                    <option >Saturday, Nov 5th - Kids Games                </option>"
                        gc_BodyToDisplay += "                                    <option >Saturday, Nov 5th - Reindeer Lane             </option>"
                        gc_BodyToDisplay += "                                    <option >Saturday, Nov 5th - Christmas Cafe            </option>"
                        gc_BodyToDisplay += "                                    <option >Saturday, Nov 5th - Cake Walk                 </option>"
                        gc_BodyToDisplay += "                                    <option >Saturday, Nov 5th - Bake Sale                 </option>"
                        gc_BodyToDisplay += "                                    <option >Saturday, Nov 5th - Silent Auction            </option>"
                        //gc_BodyToDisplay += "                                    <option >Saturday, Nov 5th - Raffle                    </option>"
                        gc_BodyToDisplay += "                                    <option >Saturday, Nov 5th - Crafter Loading & Cleanup </option>"
                        gc_BodyToDisplay += "                                </select></p>"
                        gc_BodyToDisplay += "                        </td>"

                        gc_BodyToDisplay += "                        <td><img src='images/spacer.gif' width=20></td>"
                        gc_BodyToDisplay += "                        <td><p class=formtext>Timeframe to help for Friday or Saturday<br>"
                        gc_BodyToDisplay += "                                <select name='timeframe' class=formtext>"
                        gc_BodyToDisplay += "                                    <option >No Time Preference!</option>"
                        gc_BodyToDisplay += "                                    <option >07am-09am</option>"
                        gc_BodyToDisplay += "                                    <option >09am-11am</option>"
                        gc_BodyToDisplay += "                                    <option >11am-01pm</option>"
                        gc_BodyToDisplay += "                                    <option >01pm-03pm</option>"
                        gc_BodyToDisplay += "                                    <option >03pm-05pm</option>"
                        gc_BodyToDisplay += "                                    <option >05pm-07pm</option>"
                        gc_BodyToDisplay += "                                </select></p>"
                        gc_BodyToDisplay += "                        </td>"
                        gc_BodyToDisplay += "                    </tr>"
                        gc_BodyToDisplay += "                </table>"

                        gc_BodyToDisplay += "                <span class=formtext>Comments, Suggestions or Special Requests<br><textarea class=fieldtext name='comments' rows=7 cols=70></textarea><br>"
                        gc_BodyToDisplay += "                </span>"
                        gc_BodyToDisplay += "                <p><input type='submit' name='Submit' value='Submit'></p>"

                        gc_BodyToDisplay += "                <p><span class=mainbluebold>"
                        gc_BodyToDisplay += "                    Thank you for supporting the Christams Attic and Corpus Christi School!  </span> One of our Christmas Attic chairpersons will contact you during October to confirm your availability to help!!   We look forward to seeing you at this year's Christmas Attic. As only Bing Crosby could sing it,  \"It's beginning to look a lot like Christmas...\" "
                        gc_BodyToDisplay += "                </p>"

                        gc_BodyToDisplay += "            </form>"

                        gc_BodyToDisplay += "        Email Maureen with any questions: <a href='mailto:tim_maureen@verizon.net?subject=>>Christmas%20Attic%202011%20Volunteers'>tim_maureen@verizon.net</a>"

                        gc_BodyToDisplay += "    </td>"
                        gc_BodyToDisplay += "</tr>"
                        gc_TopMenuItemToHighlight = "volunteers";
                        break;
                    }

        case 'calocation':
                    {
                        gc_BodyToDisplay += "<tr>"
                        gc_BodyToDisplay += "    <td><img src='images/spacer.gif' height=1></td>"
                        gc_BodyToDisplay += "    <td class=main>"
                        gc_BodyToDisplay += "        <b>DIRECTIONS</b>"

                        gc_BodyToDisplay += "        <br>"

                        gc_BodyToDisplay += "        As you may remember from previous years, this festive event is held indoors at the Corpus Christi School at St. Anthony's Catholic Church, from 9am-3pm, located at 3301 Glen Carlyn Road, in Falls Church, VA, at the corner of Route 7 (Leesburg Pike) and Glen Carlyn Road.  Here is a link to a map:"
                        gc_BodyToDisplay += "            <a href='http://maps.google.com/maps?q=3301+Glen+Carlyn+Rd,+Falls+Church,+VA+22041&ll=38.856670,-77.138057&spn=0.008540,0.020385&t=h&hl=en' target=_blank>Link to Google Maps</a>"

                        gc_BodyToDisplay += "            <br>&nbsp;&nbsp;&nbsp;<img src='images/ca.location.map.jpg' border=2>"

                        gc_BodyToDisplay += "        <br>"

                        gc_BodyToDisplay += "        Once you enter the school grounds from the main entrance off Glen Carlyn, you may temporarily park your vehicle in the Crafter Unloading Area while you register and unload your vehicle. As soon as you've completed unloading your vehicle, please move it to the Crafter Parking Area around the side of the gym."

                        gc_BodyToDisplay += "        <br><br>"

                        gc_BodyToDisplay += "        If you are coming from the South or the East, follow the Washington DC Beltway around to I395 and head North. Follow I395 North and get off at the King Street exit headed West.  Continue West on King Street about 3 miles and St. Anthony's church will be on your right."

                        gc_BodyToDisplay += "        <br><br>"

                        gc_BodyToDisplay += "        If you are coming from the West or the North, take the Washington DC beltway I495 around to Route 7-Leesburg Pike Exit headed East. Continue East on Route 7 about 5 miles and St. Anthony's church will be on your left."

                        gc_BodyToDisplay += "        <br><br>"

                        gc_BodyToDisplay += "        <b>SET-UP</b>"
                        gc_BodyToDisplay += "        <br>"
                        gc_BodyToDisplay += "        The doors open to the public from 9am-3pm, with crafter set-up from 7am-9am and breakdown from 3pm-5pm.  All crafters will be in the Gymnasium this year, so please park in the Crafter Unloading Area while you check-in and unload your equipment.  Your space will be assigned during check-in and we will have several carts and able-bodied elves available to help you as necessary.   Once you've moved your equipment to your space, we ask that you please take advantage of the convenient parking behind the Gymnasium and move your vehicle before the show starts."

                        gc_BodyToDisplay += "        <br><br>"

                        gc_BodyToDisplay += "        We will be having a raffle for exciting products and the ever-popular Silent Auction will be held in the Gymnasium. Help yourself to free coffee and our Christmas Attic Food Shop will be serving hot food and drinks for purchase all day long to keep the crowds coming."


                        gc_BodyToDisplay += "    </td>"
                        gc_BodyToDisplay += "</tr>"
                        break;
                    }

        case 'contact':
                    {
                        gc_BodyToDisplay += "<tr>"
                        gc_BodyToDisplay += "    <td><img src='images/spacer.gif' height=1></td>"
                        gc_BodyToDisplay += "    <td class=main>"

                        gc_BodyToDisplay += "        We have many people who can answer any questions you might have,"
                        gc_BodyToDisplay += "        so give us a shout!"

                        gc_BodyToDisplay += "        <br><br>"

                        gc_BodyToDisplay += "        <table border=0 cellspacing=10>"
                        gc_BodyToDisplay += "            <tr>"
                        gc_BodyToDisplay += "                <td><b>CRAFTERS:</b></td><td>Sharon at <a href='mailto:sharon_zimbabwe@hotmail.com?subject=>>Christmas%20Attic%202011'>sharon_zimbabwe@hotmail.com</a></td>"
                        gc_BodyToDisplay += "            </tr>"
                        gc_BodyToDisplay += "            <tr>"
                        gc_BodyToDisplay += "                <td><b>SILENT AUCTION & RAFFLE:</b></td><td>Jennifer at <a href='mailto:jenbeuse@yahoo.com?subject=>>Christmas%20Attic%202011'>jenbeuse@yahoo.com</a>"
                        gc_BodyToDisplay += "            </tr>"
                        gc_BodyToDisplay += "            <tr>"
                        gc_BodyToDisplay += "                <td><b>VOLUNTEERS:</b></td><td> Maureen at <a href='mailto:tim_maureen@verizon.net?subject=>>Christmas%20Attic%202011'>tim_maureen@verizon.net</a></td>"
                        gc_BodyToDisplay += "            </tr>"
                        gc_BodyToDisplay += "            <tr>"
                        gc_BodyToDisplay += "                <td><b>GENERAL INFO:</b></td><td>Sue at <a href='mailto:mairena75@verizon.net?subject=>>Christmas%20Attic%202011'>mairena75@verizon.net</a></td>"
                        gc_BodyToDisplay += "            </tr>"
                        gc_BodyToDisplay += "        </table>"

                        gc_BodyToDisplay += "        <br>"

                        gc_BodyToDisplay += "        If you'd like to mail us something, send it to:"

                        gc_BodyToDisplay += "        <br><br>"

                        gc_BodyToDisplay += "        <span class=mainbold>"
                        gc_BodyToDisplay += "        &nbsp;&nbsp;&nbsp;Corpus Christi School "
                        gc_BodyToDisplay += "        <br>&nbsp;&nbsp;&nbsp;c/o Christmas Attic   "
                        gc_BodyToDisplay += "        <br>&nbsp;&nbsp;&nbsp;3301 Glen Carlyn Road "
                        gc_BodyToDisplay += "        <br>&nbsp;&nbsp;&nbsp;Falls Church, VA 22041"
                        gc_BodyToDisplay += "        </span>"
                        gc_BodyToDisplay += "    </td>"
                        gc_BodyToDisplay += "</tr>"

                        break;
                    }

        default:
                    {
                        gc_BodyToDisplay += "<tr>"
                        gc_BodyToDisplay += "    <td><img src='images/spacer.gif' height=1></td>"
                        gc_BodyToDisplay += "    <td class=mainbold>"
                        gc_BodyToDisplay += "        Sample Text for " + gc_TopMenuItemToHighlight + "<br><br>"
                        gc_BodyToDisplay += "    </td>"
                        gc_BodyToDisplay += "</tr>"
                        break;
                    }
    }

    //*****************************************************************************
    //** Add this footer to every page.
    //*****************************************************************************
    gc_BodyToDisplay += "<tr>"
    gc_BodyToDisplay += "    <td><img src='images/spacer.gif' height=1></td>"
    gc_BodyToDisplay += "    <td class=smalltext>"
    gc_BodyToDisplay += "    </td>"
    gc_BodyToDisplay += "</tr>"


    //*****************************************************************************
    //** If the page is "about" page, set the left menu to highlight "Mission"
    //*****************************************************************************
    if (gc_TopMenuItemToHighlight == "about" ) {
        gc_LeftMenuItemToHighlight = "leftnavmission";
    }

    //*****************************************************************************
    //** If the page is a "leftnav" page, set the top menu to highlight "About" and set the leftnav to highlight the correct page
    //*****************************************************************************
    if (gc_TopMenuItemToHighlight.substring(0,7) == "leftnav") {
        gc_LeftMenuItemToHighlight = gc_TopMenuItemToHighlight;
        gc_TopMenuItemToHighlight  = "about";
    }

    //*****************************************************************************
    //** Prepare HTML headers
    //*****************************************************************************
    document.writeln("<head>")
    document.writeln("<meta name='description' content='corpus christi school christmas attic craft fair and silent auction, falls church, va'>")
    document.writeln("<meta name='keywords'    content='crafts, jewelery, silent auction, bake sale, corpus christi school, christmas attic, craft fair, silent auction, raffle, gifts, gift baskets'>")
    document.writeln("<meta name='keywords'    content='http://arts.state.wi.us/STATIC/fairs/november.htm'>")
    document.writeln("<title>Christmas Attic :: " + gc_TopMenuItemToHighlight)

    if (gc_LeftMenuItemToHighlight != "")
        document.writeln( " :: " + gc_LeftMenuItemToHighlight.replace("leftnav",""));

    document.writeln("</title>")

    document.writeln("</head>")
    document.writeln("<link rel='shortcut icon' href='images/ca.16x16.ico' >")
    document.writeln("<LINK REL='stylesheet' TYPE='text/css' HREF='include/ca.css'>")
    document.writeln("<body topmargin=0 leftmargin=0>")
    document.writeln("        <a name=top></a>")

    //*****************************************************************************
    //*****************************************************************************
    //---------------------------------
    //**  Row 1 with embedded table - header
    //---------------------------------
    document.writeln("<table border=0 cellpadding=0 cellspacing=0 height=100% width=100%>")
    document.writeln("    <tr class=bggreen>")
    document.writeln("        <td colspan=3>")
    document.writeln("            <table cellspacing=0 cellpadding=0 width=100% background='images/bg.gif'>")
    document.writeln("                <tr valign=center >")
    document.writeln("                    <td            ><img name='CAWebhome0' src='images/ca_top.gif' border='0' alt=''></td>")
    document.writeln("                    <td width=100% align=center title='Christmas Attic Fun!'><img name='DATWebhome14' src='images/winter.image" + gi_starRandNum + ".gif' border='0' ></td>")
    document.writeln("                </tr>")
    document.writeln("            </table>")
    document.writeln("        </td>")
    document.writeln("    </tr>")

    //---------------------------------
    //**  Row 2 with embedded table - minor set of buttons
    //---------------------------------
    document.writeln("    <tr class=bgyellow>")
    document.writeln("        <td colspan=3>")
    document.writeln("            <table border=0 cellspacing=0 cellpadding=0 width=100%>")
    document.writeln("                <tr>")
    document.writeln("                    <td >                    <img name='DATWebhome4'  src='images/ca_eventbar.gif' border='0' alt='' ></td>")
    document.writeln("                    <td width=100%><img name='DATWebhome14' src='images/spacer.gif'               border='0' alt='' ></td>")
    document.writeln("                </tr>")
    document.writeln("            </table>")
    document.writeln("        </td>")
    document.writeln("    </tr>")

    //---------------------------------
    //**  Row 3 with embedded table - major set of buttons
    //---------------------------------
    document.writeln("    <tr class=bgblue>")
    document.writeln("        <td colspan=3>")
    document.writeln("            <table cellspacing=0 cellpadding=0 width=100%>")
    document.writeln("                <tr>")
    document.writeln("                    <td           ><img name='CAWebhome6'  src='images/ca_fc.gif'    border='0' alt='' ></td>")
    document.writeln(                         buildHTMLText( "RO:home"         , "All about the Christmas Attic", "defaultclass", "nolink", "cell") );
    document.writeln(                         buildHTMLText( "RO:crafters"     , "Crafter deadline is November 3rd, hurry and sign up!", "defaultclass", "nolink", "cell") );
    document.writeln(                         buildHTMLText( "RO:auction"      , "New auction items added, check it out!", "defaultclass", "nolink", "cell") );
    document.writeln(                         buildHTMLText( "RO:volunteers"   , "We would love to have you join us, please sign up!", "defaultclass", "nolink", "cell") );
    document.writeln(                         buildHTMLText( "RO:calocation"   , "Check here for directions and parking.", "defaultclass", "nolink", "cell") );
    document.writeln(                         buildHTMLText( "RO:contact"      , "Got a question, who to contact!", "defaultclass", "nolink", "cell") );
    document.writeln("                    <td width=100%><img name='DATWebhome14' src='images/spacer.gif'               border='0'  ></td>")
    document.writeln("                </tr>")
    document.writeln("            </table>")
    document.writeln("        </td>")
    document.writeln("    </tr>")


    //---------------------------------
    //**  Row 3.5 with embedded table - extra graphics below buttons
    //---------------------------------
    document.writeln("    <tr class=bgyellow>")
    document.writeln("        <td colspan=3>")
    document.writeln("            <table cellspacing=0 cellpadding=0 width=100%>")
    document.writeln("                <tr>")
    document.writeln("                    <td           ><img name='CAWebhome6.5'  src='images/ca_fc_bottom.gif'    border='0' alt='' ></td>")
    document.writeln("                    <td width=100%><img name='DATWebhome14' src='images/spacer.gif'           border='0' alt='' ></td>")
    document.writeln("                </tr>")
    document.writeln("            </table>")
    document.writeln("        </td>")
    document.writeln("    </tr>")



    //---------------------------------
    //**  Row 4 with embedded table - cells to set column sizing for: left nav, main body, right nav, right color bar
    //---------------------------------
    document.writeln("    <tr height=100% valign=top align=left class=bgyellow>")
    document.writeln("        <td valign=top>")
    document.writeln("            <table border=0 cellspacing=0 cellpadding=0>")


    //***********************************
    //** BEGIN - Randomly display buttons
    //***********************************
    la_buttons=new Array(5);

    la_buttons[0]  = "                <tr valign=top>"
    la_buttons[0] +=                          buildHTMLText( "RO:craftersbutton"         , "Crafter deadline is November 3rd, hurry and sign up!", "defaultclass", "nolink", "cell") ;
    la_buttons[0] += "                </tr>"
    la_buttons[1]  = "                <tr valign=top>"
    la_buttons[1] +=                          buildHTMLText( "RO:auctionbutton"          , "New auction items added, check it out!", "defaultclass", "nolink", "cell") ;
    la_buttons[1] += "                </tr>"
    la_buttons[2]  = "                <tr valign=center>"
    la_buttons[2] +=                          buildHTMLText( "RO:volunteersbutton"       , "We would love to have you join us, please sign up!", "defaultclass", "nolink", "cell");
    la_buttons[2] += "                </tr>"

    la_buttons[3]  = la_buttons[0];
    la_buttons[4]  = la_buttons[1];

    li_randNum=Math.floor(Math.random()*3);

    document.writeln( la_buttons[ li_randNum     ] );
    document.writeln( la_buttons[ li_randNum + 1 ] );
    document.writeln( la_buttons[ li_randNum + 2 ] );

    //***********************************
    //** END - Randomly display buttons
    //***********************************

    document.writeln("            </table>")
    document.writeln("        </td>")
    document.writeln("        <td valign=top align=left>")

       switch(gc_TopMenuItemToHighlight)
       {
           case 'home':
              {
                  document.writeln("                        <img src='images/ca.header."+gc_TopMenuItemToHighlight+".gif'>");
                  li_headerGap = 1;
                  break;
              }
           default:
              {
                  document.writeln("                        <img src='images/ca.header."+gc_TopMenuItemToHighlight+".gif'>");
                  li_headerGap = 1;
              }
       }

    document.writeln("            <table border=0 cellspacing=1 cellpadding=0 border=1 width=95%>")
    document.writeln("                <tr height=100%>")
    document.writeln("                    <td><img src='images/spacer.gif' width=10 height="+li_headerGap+" border=0></td>")
    document.writeln("                    <td colspan=5><img src='images/spacer.gif' width=10 height=1></td>")
    document.writeln("                </tr>")

    document.writeln( gc_BodyToDisplay );


}
//*****************************************************************************
//** FUNCTION: Creates one entry for the star contributor list
//*****************************************************************************
function buildStarContributorEntry(pci_title, pci_donorName, pci_href ) {

    lc_HTMLText = ""

    lc_HTMLText += "<tr  title='" + pci_title + "' onMouseOver=\"this.style.backgroundColor='#ffff00'\" onMouseOut=\"this.style.backgroundColor='#fefac0'\" >"
    lc_HTMLText += "    <td nowrap>"

    if ( (!pci_href) )
        lc_HTMLText += "        <img border=0 src='images/star.gif' height=13>&nbsp;&nbsp;<span class=smallblue>                                                                 " + pci_donorName + "</span>"
    else
        lc_HTMLText += "        <img border=0 src='images/star.gif' height=13>&nbsp;&nbsp;<a class=smallblue href='http://" + pci_href + "'target=_blank>" + pci_donorName + "</a>";


    lc_HTMLText += "    </td>"
    lc_HTMLText += "</tr>"

  //alert (lc_HTMLText );
    return lc_HTMLText;

}
//*****************************************************************************
//** FUNCTION: replaces all instances of a string with another string
//*****************************************************************************
function xreplace(pci_incomingString, pci_lookForString, pci_replaceWithString){

var temp = pci_incomingString;
var i    = temp.indexOf(pci_lookForString);

while(i > -1)

{

temp = temp.replace(pci_lookForString, pci_replaceWithString);
i    = temp.indexOf(pci_lookForString, i + pci_replaceWithString.length + 1);

}

return temp;

}

//*****************************************************************************
//** FUNCTION: Creates one entry for the star contributor list
//*****************************************************************************
function buildStarContributorEntry2(pci_title, pci_donorName, pci_href ) {

    lc_HTMLText     = ""
    lc_tipTextTitle = "Christmas Attic Star Contributor"


    lc_tipTextCell1 = "<img src=images/star_" + ga_stars[ gi_starRandNum ] + ".gif width=40>"


    //lc_HTMLText += "    <div title='" + pci_title + "' class=links align=left onMouseOver=\"this.style.backgroundColor='#bfe1fa'\" onMouseOut=\"this.style.backgroundColor='#f5f5f5'\" >"
    lc_HTMLText += "    <div title='" + xreplace(pci_title, "'", String.fromCharCode(34)) + "' class=links align=left onmouseOver=\"ddrivetip('" + lc_tipTextTitle + "','" + lc_tipTextCell1 + "','<span class=mainbluebold>" + xreplace(pci_donorName, "'", "") + "</span><br><br>" + xreplace(pci_title, "'", "") + "',200);\" onmouseout=\"hideddrivetip();\">"
//alert(xreplace(pci_title, "'", String.fromCharCode(34)));
    //alert( lc_HTMLText );
    //lc_HTMLText  += " <a href='ca." + lc_rolloverName + ".html'             onmouseOver=\"ddrivetip('" + lc_tipTextTitle + "','" + lc_tipTextCell1               + "','" + pci_tipTextCell2 + "',200);mouseOverInt(0," + lc_rolloverName + ");\" onmouseout='hideddrivetip();mouseOverInt(1," + lc_rolloverName + ");'>" + lc_returnText + "</a>";

    if ( (!pci_href) )
        lc_HTMLText += "        <img border=0 src='images/star_" + ga_stars[ gi_starRandNum ] + ".gif' height=13>&nbsp;&nbsp;<span class=smallblue>                         " + pci_donorName + "</span>"
    else
        lc_HTMLText += "        <img border=0 src='images/star_" + ga_stars[ gi_starRandNum ] + ".gif' height=13>&nbsp;&nbsp;<a href='http://" + pci_href + "'target=_blank>" + pci_donorName + "</a>";



    //** Uncomment the following to add additional description below the company name
    //lc_HTMLText += "    <br><span class=contribsmalltext>" + pci_title +"</span>"

    lc_HTMLText += "    </div>"

  //alert (lc_HTMLText );
    return lc_HTMLText;

}

//*****************************************************************************
//** FUNCTION: Creates the common area for each page after the main body text
//*****************************************************************************
function showCACommonFooter()
{
    //*****************************************************************************
    //** Build Main Text box - START
    //*****************************************************************************

    //*****************************************************************************
    //** Build right-hand menu bar - START
    //*****************************************************************************

    document.writeln("            </table>")
    document.writeln("        </td>")
    document.writeln("        <td width=100%>")

    document.writeln("            <img src='images/spacer.gif' height=5 border=0><table cellpadding=5 cellspacing=0 >")

    document.writeln("                <tr>")
    document.writeln("                    <td nowrap>")

        //<!--- Event List --->
    document.writeln("                        <div id='displayBox'  class='chunk'>");
    document.writeln("                            <div class='rc_top'><div class='rc_tl'></div><div class='rc_tr'></div></div>");
    document.writeln("                            <div class='dsply'>");
//document.writeln("                                <h4 align=center>&nbsp;&nbsp;&nbsp;Our Star Contributors :: $100+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</h4>");
document.writeln("                                <h4 align=center>&nbsp;&nbsp;&nbsp; :: Our Star Contributors :: &nbsp;&nbsp;<br>Over $7521 Donated</h4>");
//document.writeln("                                <h4 align=center>&nbsp;&nbsp;&nbsp; :: Our Star Contributors ::</h4>");
//document.writeln("                                <h4 align=center>&nbsp;&nbsp;&nbsp;Our Star Contributors :: Coming Soon!</h4>");
  //document.writeln("                                <h4 align=center>2011 Contributors List<br>Coming Soon!</h4>");

    //document.writeln( buildStarContributorEntry2("$150 sponsorship","JNA Medical Transport","") );
    document.writeln( buildStarContributorEntry2("Stay at condo Garden City Beach, SC 1 week","Ellig Family","") );
    document.writeln( buildStarContributorEntry2("4 night stay in Rehoboth","McGee Family","") );
    document.writeln( buildStarContributorEntry2("Chiropractic treatment procedure","Falls Church Chiropractic","") );
    document.writeln( buildStarContributorEntry2("Two (2) tickets to any mainstage show in our 2011-2012 Season and a $50 gift card to ThinkFoodGroup (Jose Andres restaurant group).","Shakespeare Theater","www.shakespearetheatre.org/") );
    document.writeln( buildStarContributorEntry2("1 night stay for 2+ breakfast","Red Fox Inn","www.redfox.com") );
    document.writeln( buildStarContributorEntry2("Giftcard & carpet cleaner solution","Absolute Carpet Care","www.absolutecarpetcare.com") );
    document.writeln( buildStarContributorEntry2("two 2 hour Spanish tutoring sessions","Mrs. Matz","") );
    document.writeln( buildStarContributorEntry2("3 Pose Package","Olan Mills","www.olanmills.com/") );
    document.writeln( buildStarContributorEntry2("Moonbounce Rental","Sam Jacknin, Green Dot Realty","www.greendotrealty.com") );
    document.writeln( buildStarContributorEntry2("10 yoga classes","Sun & Moon Yoga Studio","www.sunandmoonstudio.com") );
    document.writeln( buildStarContributorEntry2("Beautiful Red & White Fresh Water Pearl Necklace","Jeannie Jewelers","") );
    document.writeln( buildStarContributorEntry2("2 beginners learn-to-ski or learn-to-board packages","Whitetail Ski Resort","www.skiwhitetail.com") );
    document.writeln( buildStarContributorEntry2("acoustic guitar & stand","Mario Pareja & Family","www.umarparejaarchitecture.com") );
    document.writeln( buildStarContributorEntry2("2 winter 2011/2012 or spring 2012  registrations","Annandale Boys and Girls Club-ABGC","www.abgc.org") );
    document.writeln( buildStarContributorEntry2("Birthday Party for 10","Ultrazone- The Ultimate Laser Adventure","www.lasertaggroup.com") );
    document.writeln( buildStarContributorEntry2("2 tickets","Six Flags America","www.sixflags.com/friends") );
    document.writeln( buildStarContributorEntry2("Four (4) tickets to Petrushka and four (4) Free Gelato cards from Pitango Gelato.","Shakespeare Theater","www.shakespearetheatre.org/") );
    document.writeln( buildStarContributorEntry2("Ginger Citrus Luxury Gift Basket from Arbonne International (Body Wash, Sugar Scrub,Body Butter, Shampoo & Conditioner)","Holly Smith, Independent Consultant and Area Manager","HollySmithTeam.myarbonne.com") );
    document.writeln( buildStarContributorEntry2("Free photography session at your home or local setting.  Includes CD with all your photos for you to print.  ","Brian Anderson","") );
    document.writeln( buildStarContributorEntry2("Credit for 4 course dinner for 2 Potomac cruise","Dandy Restaurant Cruise Ships","www.dandydinnerboat.com") );
    document.writeln( buildStarContributorEntry2("Gift Card for uniform supplies","Flynn & O’Hara Uniform Company","www.flynnohara.com/") );
    document.writeln( buildStarContributorEntry2("guided private tour for 10","Friends of National Zoo","") );
    document.writeln( buildStarContributorEntry2("6 beaded jewelry items","Maryann Mitchell, Beaded Treasures","") );
    document.writeln( buildStarContributorEntry2("10 hours of babysitting during Christmas season","Mrs. Kans","") );
    document.writeln( buildStarContributorEntry2("Dinner for 6 with sisters","Franciscan Sisters of the Eucharist","fallschurch@fsecommunity.org") );
    document.writeln( buildStarContributorEntry2("Principal for a Day & lunch with Mr. Garcia one day 1st quarter","Mr. Garcia","") );
    document.writeln( buildStarContributorEntry2("Trip for 1 child and a friend to Chuck-E-Cheeses","Mrs. Bean & Mrs. Quintero","") );
    document.writeln( buildStarContributorEntry2("Homemade Indian Dinner prepared and brought to your house","Mrs. Nande & Mrs. Cheriathundam","") );
    document.writeln( buildStarContributorEntry2("Vice Principal for a day (includes travel to and from CCE too!","Mrs. Stich","") );
    document.writeln( buildStarContributorEntry2("Lunch with Vice Principal for 1 student & 2 friends (she will travel to the CCE too!)","Mrs. Stich","") );
    document.writeln( buildStarContributorEntry2("Home cooked French meal prepared at your home, including a bottle of French wine","Mrs. Pesce","") );
    document.writeln( buildStarContributorEntry2("Priority seating at the Christmas Concert","Corpus Christi School","") );
    document.writeln( buildStarContributorEntry2("Priority Parking at the Christmas Concert","Corpus Christi School","") );
    document.writeln( buildStarContributorEntry2("Priority seating at the Kindergarten Graduation","Corpus Christi School","") );
    document.writeln( buildStarContributorEntry2("Priority Parking at the Kindergarten Graduation","Corpus Christi School","") );
    document.writeln( buildStarContributorEntry2("Priority seating at the 8th Grade Graduation","Corpus Christi School","") );
    document.writeln( buildStarContributorEntry2("Priority Parking at the 8th Grade Graduation","Corpus Christi School","") );
    document.writeln( buildStarContributorEntry2("6 VIP Parking Spots","Corpus Christi School","") );
    document.writeln( buildStarContributorEntry2("VIP Parking 2nd, 3rd, 4th Quarter 2011/2012 PLUS 1st Quarter 2012/2013","Corpus Christi School","") );
    document.writeln( buildStarContributorEntry2("VIP Parking 2nd, 3rd, 4th Quarter 2011/2012","Corpus Christi School","") );
    document.writeln( buildStarContributorEntry2("VIP Parking 2nd & 3rd Quarter 2011/2012","Corpus Christi School","") );
    document.writeln( buildStarContributorEntry2("VIP Parking 4th Quarter 2011/2012","Corpus Christi School","") );
    document.writeln( buildStarContributorEntry2("VIP Parking 2nd Quarter 2011/2012","Corpus Christi School","") );
    document.writeln( buildStarContributorEntry2("VIP Parking 3rd & 4th Quarter 2011/2012","Corpus Christi School","") );
    document.writeln( buildStarContributorEntry2("VIP Parking 4th Quarter 2011/2012 PLUS 1st Quarter 2012/2013","Corpus Christi School","") );
    document.writeln( buildStarContributorEntry2("VIP Parking 1st Quarter 2012/2013 School Year","Corpus Christi School","") );

    document.writeln( "<script language='javascript'>document.getElementById(\"displayBox\").style.backgroundColor='#ffffff';</script>");

document.writeln("                                <h4 align=center>$7521 Donated in Total!</h4>");
document.writeln("                                <h4 align=center><a class=smallblue href='ca.auctionitems.html'>Click here to see full list!</a></h4>");
    document.writeln("                            </div>");
    document.writeln("                            <div class='rc_bot'><div class='rc_bl'></div><div class='rc_br'></div></div>");
    document.writeln("                        </div>");
        //<!--- /Event List --->


    document.writeln("                    </td>")
    document.writeln("                </tr>")

    document.writeln("            </table>")

    document.writeln("        </td>")
    document.writeln("    </tr>")
    document.writeln("    <tr width=100% class=bgyellow><td colspan=5 >&nbsp;</td></tr>")
    document.writeln("    <tr width=100% class=bgred><td colspan=5 ><img height=3 src='images/spacer.gif'</td></tr>")
    document.writeln("    <tr width=100% bgcolor='ffffff'><td colspan=5 ><img height=8 src='images/spacer.gif'</td></tr>")
    document.writeln("    <tr width=100% class=bgred><td colspan=5 ><img height=5 src='images/spacer.gif'</td></tr>")
    document.writeln("")
    document.writeln("")
    document.writeln("</table>")

    //*****************************************************************************
    //**  Write out html footers
    //*****************************************************************************
    document.writeln("</body>")
    document.writeln("<script language='JavaScript'>")
    document.writeln("    setMenuBarOn( '' );")
    document.writeln("</script>")

    preloadImages();
}

