// opent een popup venster met daarin de privacy statement
function openService( intService )
	{
	openPopup( "popup.asp?service="+ intService, 500, 400 );
	}
	
function openOrganisatie( strOrganisatie )
	{
	openPopup( "popup.asp?organisatie="+ strOrganisatie, 450, 347 );
	}
	
function openRelatie( intRelatie )
	{
	openPopup( "popup.asp?relatie="+ intRelatie, 450, 347 );
	}
	
function openPopup( strUrl, intHeight, intWidth )
	{	
	strName = "popup";
	strParam = "height="+ intHeight + ",width="+ intWidth + ",dependent=yes,directories=no,fullscreen=no,menubar=no,resizable=no,scrollbars=yes,status=no,toolbar=no";
	window.open ( strUrl, strName, strParam );
	}