// JavaScript Document
function OpenLink (mylink) {
		
	if (mylink == 'Welkom')
	{
	document.location = 'welkom.htm';	
	}
	else if (mylink == 'Autonoom_werk')
	{
	document.location = 'autonoom_werk.htm';
	}
	else if (mylink == 'Beeldhouwwerk')
	{
	document.location = 'beeldhouwwerk.htm';
	}
	else if (mylink == 'Workshops')
	{
	document.location = 'workshops.htm';
	}
	else if (mylink == 'Zomer workshops')
	{
	document.location = 'zomer_workshop.htm';
	}
	else if (mylink == 'Beeldhouwbokken')
	{
	document.location = 'beeldhouwbokken.htm';
	}
	else if (mylink == 'Over_mij')
	{
	document.location = 'over_mij.htm';
	}
	else if (mylink == 'Contact')
	{
	document.location = 'contact.htm';
	}
	else
	{
	document.location = 'page_error.htm';	
	}
}

