window.onload = function()
{
	
	aElementen = document.getElementById('hagen').getElementsByTagName('img');
	
	for (i = 0; i < aElementen.length; i++)
	{
		
		if (aElementen[i].id.indexOf('haag') > 0)
		{

			aElementen[i].onmouseover = function() { this.src = '/afbeeldingen/'+this.id+'-over.jpg';	}
			aElementen[i].onmouseout = function() { this.src = '/afbeeldingen/'+this.id+'.jpg'; }
			
		}
		
	}
	
}

function fOpenVenster(sLocatie, bForm)
{
	
	window.open(sLocatie, 'sVenster', 'top=20,left=20,width='+(screen.width - 300)+',height='+(screen.height - 300)+',toolbar=yes,scrollbars=yes,resizable=yes');
	
	if (bForm)
	{
		
		sLocatie.target = 'sVenster';
		
	}

}

