function showObject(div_name) {
    var dS = document.getElementById(div_name);    
    dS.style.display = 'inline';
}

function hideObject(div_name) {    
    var dS = document.getElementById(div_name);    
    dS.style.display = 'none';
}

function insertPortfolioText(content) {
	if(content) {
		document.getElementById('portfolioText').innerHTML = content;
	}
}

function clearPortfolioText() {
	document.getElementById('portfolioText').innerHTML = '<b>Architectenbureau Korbee</b><br />architecten bna';
}

