﻿
function ShowInfoBox(index) {
    var title, html, width, height;
    switch (index) {
        case 1:
            title = 'Vendor Types';
            width = 610;
            height = 350;
            html = '<ul><li><strong>Actively Farming</strong>: actively involved and invested in the planting, growing, and harvesting of agricultural product or livestock on owned, rented, leased, or share-cropped land.</li>';
            html += '<li><strong>Value-Added Processor</strong>: actively involved and invested in the processing of product sold at the market; a processor may sell processed farm foods, value-added processed foods.</li>';
            html += '<li><strong>Hot Food Concession</strong>: selling food that is freshly made and available for immediate consumption on-site.</li>';
            html += '<li><strong>Craft</strong>: selling non-food products that are functional, utilitarian or decorative.</li>';
            html += '<li><strong>Non-Profit</strong>: a not-for-profit organization that is not selling products.</li>';
            html += '<li><strong>Service</strong>: a service-oriented business, such as a massage therapist.</li>';
            html += '<li><strong>Youth</strong>: only for those markets that offer special rates for youth vendors.</li>';
            html += '</ul>';
            break;
        case 2:
            title = 'Marketing Opportunity';
            width = 640;
            height = 280;
            html = 'Your company description and photo may be used, with your permission, on the market website(s) for ';
            html += 'informational and advertising purposes.<br /><br /> ';
            html += 'Site visitors will be able to search for vendors and products, and your information (contact, company ';
            html += 'description and photo) will be displayed prominently.<br /><br /> ';
            html += 'For your company description, please write a terse (3-5 lines) paragraph; for your company photo, please upload ';
            html += 'an image that you feel captures the essence of your business. You may return to this page any time to update ';
            html += 'this and/or other information you submit. ';
            break;
    }
    $('#dInfo').html(html);
    winInfo.setTitle(title);
    winInfo.setSize(width, height);
    winInfo.screenCenter();
    winInfo.Open();
}

