// JavaScript Document


function MoreContent()
{
document.getElementById("expertdiv").style.display = 'block';
document.getElementById("hiding").style.display = 'block';

}

function collapse()
{
document.getElementById("expertdiv").style.display = 'none';
document.getElementById("hiding").style.display = 'block';

}	

function MoreContent2()
{
document.getElementById("expertdiv").style.display = 'block';
document.getElementById("hiding").style.display = 'none';

}

 function openMapWindow(url) {
        window.open(url, 'map', 'width=650,height=800,top=170,left=162,toolbar=no,location=no,directories=no,status=no,menubar=no,dependent=yes,resizable=no,status=no,scrollbars=yes');
    }


