/**
 * tooltip.js
 * This file contains functions which display and hide tooltip div
*/

/*
 * show()
 *
 * display tooltip
 */
function show(title, streets, content) {
    if(title) {
        text = "<b>" + title + "</b>"
    }
    if(streets) {
        text = text + ", " + streets
    }
    if(content) {
        text = text + "<br />" + content;
    }
    if(!text) {
        text = "";
    }
    document.getElementById('tooltip').innerHTML = text;
}

/*
 * hide()
 *
 * hide tooltip
 */
function hide() {
    document.getElementById('tooltip').innerHTML = "";
}

function showProjectTooltip(title, content) {
    if(title) {
        text = "<b>" + title + "</b>"
    }
    if(content) {
        text = text + "<br />" + content;
    }
    document.getElementById('project_tooltip').innerHTML = text;
}

function hideProjectTooltip() {
    document.getElementById('project_tooltip').innerHTML = "";
}