//added this so the  popup wasn't dragged all over the place and written out hundreds of times
function getHoverDiv(messageText)
{
    var temp = '<div class="popupHelpDataBox">' + messageText + '</div>';
    return temp;
}

function getSpecificHoverDiv(divType)
{
    var temp = '';

    if(divType == 'HOWMANYTRAYS')
    {
        temp = '<p><strong>How much fruit should I order?</strong></p>' + 
                '<p> Since our grove-fresh and tree-ripened fruit will last 2 to 4 weeks ' +
                'in the refrigerator, we suggest that you order a minimum of two trays ' +
                'of gift fruit...plenty of citrus for one person for one to two weeks, ' +
                'with a few extra to share. Depending upon the size and selection of fruit, ' +
                'each tray holds approximately 10 pounds. We suggest you use the following ' +
                'chart as a rule of thumb when ordering:</p>' + 
                '<table width="100%" border="0" cellspacing="0" cellpadding="3">' + 
                '<tr> ' + 
                '<td class="tableHeader">Recipients</td>' + 
                '<td class="tableHeader">Trays</td>' + 
                '<td align="right" class="tableHeader">Approx. Wt.</td>' + 
                '</tr>' + 
                '<tr> ' + 
                '<td class="tablerow">One person</td>' + 
                '<td class="tablerow">2 trays</td>' + 
                '<td align="right" class="tablerow">10 pounds</td>' + 
                '</tr>' + 
                '<tr> ' + 
                '<td class="tablerow">Two or Three people</td>' + 
                '<td class="tablerow">2-4 trays</td>' + 
                '<td align="right" class="tablerow">20-40 pounds</td>' + 
                '</tr>' + 
                '<tr> ' + 
                '<td class="tablerow">Four to Six people</td>' + 
                '<td class="tablerow">3-4 trays</td>' + 
                '<td align="right" class="tablerow">30-40 pounds</td>' + 
                '</tr>' + 
                '<tr> ' + 
                '<td class="tablerow">Six or more people</td>' + 
                '<td class="tablerow">4 trays</td>' + 
                '<td align="right" class="tablerow">40 pounds</td>' + 
                '</tr>' + 
                '</table>';
	}
	else if(divType == 'WHYNOTMYSTATE')
	{
		temp = "<p> <strong>Why don't you ship to my state?</strong></p>" + 
				"<p>Please call our toll free number in regards to shipping “select” gifts to the following states:  Arizona, California, Louisiana, Nevada, &amp; Texas.  We do not ship gifts to Hawaii or Alaska.</p>";
	}
	else if(divType == 'FREEGIFTS')
	{
	    temp = "<p>Order any gift to arrive for the holidays. In February, we'll surprise the gift recipient on your behalf with a FREE gift of Temple Oranges. When March comes around, another FREE gift from you comes their way too - a gift of Honey Tangerines!</p>";
	}
      
      //return getHoverDiv(temp);
      return temp;
}
