
function help(name) {
    var category_title = "Categories";
    var category = "Our selection of resorts is divided into several Categories to help you find the type of resort you are looking for more quickly.<br><br>Select the category that best suits your planned holiday to find all matching resorts.";

    var country_title = "Countries";
    var country = "Use this dropdown to return a list of resorts specific to the Country you are planning to visit.";

    var region_title = "Regions";
    var region = "If you know exactly where you would like to go for your holiday, select a Country then a Region to return a more specific list of resorts.";

    var special_title = "Special Offers";
    var special = "Throughout the year many of our resorts will offer discounts that may coincide with your planned holiday.<br><br>Tick this box to show a list of all resorts that currently have discounts available.";

    var keywords_title = "Resort Name or Keywords";
    var keywords = "Use this field to search for resorts by name (eg: Four Seasons Country Club) or by keywords that relate to where you would like to stay or what facilities you are looking for." + 
                   "<br><br>If you wish to search on multiple keywords, please follow these conventions:" + 
                   "<br><br><b>Examples:</b>" + 
                   "<br>golf and swimming pool" + 
                   "<br>OR" + 
                   "<br>golf, swimming pool, sea view" + 
                   "<br>OR" + 
                   "<br>creche or beach";

    var facility_title = "Facilities";
    var facility = "";

    document.getElementById('help_title').innerHTML = eval(name + "_title");
    document.getElementById('help_text').innerHTML = eval(name);
    openHelp();
}

function openHelp() {
    document.getElementById('help').style.display = "block";
}

function closeHelp() {
    document.getElementById('help').style.display = "none";
}