var originaltext;

function loadText()
{
	originaltext = document.getElementById('whitesquare').innerHTML;
}

function loadImage(image)
{
	var text = '<div style="margin-left: -17px; margin-top: -18px;">';
	text += '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="592" height="406" id="menuboven" align="middle">';
	text += '<param name="allowScriptAccess" value="sameDomain" />';
	text += '<param name="allowFullScreen" value="false" />';
	text += '<param name="movie" value="images/flash/'+image+'" /><param name="quality" value="high" /><param name="bgcolor" value="#344386" />	<embed src="images/flash/'+image+'" quality="high" bgcolor="#344386" width="592" height="406" name="menuboven" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
	text += '</object></div>';
		document.getElementById('inhoud').style.display = 'none';
		document.getElementById('afbeelding').innerHTML = text;
		document.getElementById('afbeelding').style.display = 'block';		
		document.getElementById('fotos').style.marginLeft = -5 + "px";
	
}

function restore()
{
	
	document.getElementById('inhoud').style.display = 'block';
	document.getElementById('afbeelding').style.display = 'none';
	document.getElementById('fotos').style.marginLeft = 0 + "px";
}