function show(element, title)
{
    if(element != '' && title != '')
    {
        document.getElementById(element).innerHTML = title;
    }
}
