/* 
** cosbo-amsterdam.nl mixed.js ***
*/

/* 
** font-size css pop-up window ***
*/

function openFSpop() {
	document.getElementById("fontswitcherPop").style.display="block";
	}

function closeFSpop() {
	document.getElementById("fontswitcherPop").style.display="none";
	}

/* 
** font-size switcher ***
*/

function fontSize(n) { 
	if (n==-2) {document.body.style.fontSize='85%'};
	if (n==-1) {document.body.style.fontSize='90%'};
	if (n==0) {document.body.style.fontSize='100%'};
	if (n==1) {document.body.style.fontSize='105%'};
	if (n==2) {document.body.style.fontSize='117%'};
}

function displayFontsizebar() { 
	document.getElementById("x").style.display="block";
	document.getElementById("x").style.background="yellow";
}