		/* Source code: http://www.howtocreate.co.uk/tutorials/javascript/browserwindow
		 * Edited by Matthijs to rescale the canvas
		 */
			function alertSize(sizetype) {
				var myWidth = 0, myHeight = 0, mySize = 0;
				if( typeof( parent.window.innerWidth ) == 'number' ) {
					//Non-IE
					myWidth = parent.window.innerWidth;
					myHeight = parent.window.innerHeight;
				} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
					//IE 6+ in 'standards compliant mode'
					//console.log('Nog checken: mogelijk gaat de grootte van het browserscherm nog niet goed, als je klikt binnen de SVG en op de foto\'s van de politici rechts boven.');
					myWidth = document.documentElement.clientWidth;
					myHeight = document.documentElement.clientHeight;
				} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
					//IE 4 compatible
					//console.log('Nog checken: mogelijk gaat de grootte van het browserscherm nog niet goed, als je klikt binnen de SVG en op de foto\'s van de politici rechts boven.');
					myWidth = document.body.clientWidth;
					myHeight = document.body.clientHeight;
				}
				
				if (sizetype == 'width')
				{
					mySize = myWidth;
				}
				else if (sizetype == 'height')
				{
					mySize = myHeight; /*300-25*/
				}
				return mySize;
			}
			function reCalculateCanvasSize() {
				location.reload();
			}
			var canvas_width = alertSize('width');
			var canvas_height = alertSize('height');
