// --------
// Dropdownmenu's weergeven
// --------

function show_menu(show_id)
{
document.getElementById('menu_people').style.display = 'none';
document.getElementById('menu_partner').style.display = 'none';
document.getElementById('menu_brand').style.display = 'none';
document.getElementById('menu_experience').style.display = 'none';

document.getElementById(show_id).style.display = 'block';
}

function hide_menu(show_id)
{
document.getElementById(show_id).style.display = 'none';
}

// --------
// Popup-functie
// --------
function popup(url, width, height, scrollers)
{
newwindow = window.open(url,'popup','width='+width+',height='+height+',scrollbars='+scrollers+',toolbar=no,location=no,left='+screen.availWidth/100*5+',top='+screen.availHeight/100*5);
if (window.focus) {newwindow.focus()}
}
