// Style Switch
function switchTemplate(scrTmp,btnSiz){
	// Define the directory for style. Allows 
	scrTmp = "http://www.gk.nl/cmsdata/templates/" + scrTmp;
	document.getElementById("screenLayout").href = scrTmp;
	if(btnSiz == "textLarge"){
		document.getElementById("chTxt1").src = "http://www.gk.nl/pix/text_smaller.gif";
		document.getElementById("chTxt1").onclick = function(){switchTemplate('text_default.css','textSmall')};
	}else if(btnSiz == "textSmall"){
		document.getElementById("chTxt1").src = "http://www.gk.nl/pix/text_larger.gif";
		document.getElementById("chTxt1").onclick = function(){switchTemplate('text_large.css','textLarge')};
	}
}