	var stil=0
  	var expdate = new Date();
 	expdate.setTime(expdate.getTime() + (1000*3600*24*365*10));

 	if(document.cookie.indexOf('stil=1')>=0)
 	{
		document.write('<link rel="stylesheet" type="text/css" href="typo/typo1.css"');
	}
	else
	if (document.cookie.indexOf('stil=2')>=0)
	{
		document.write('<link rel="stylesheet" type="text/css" href="typo/typo2.css"');
	}
	else
		document.write('<link rel="stylesheet" type="text/css" href="typo/typo1.css"');		

	function ChooseStyle(stil)
	{  
	// alert("Stil = " + stil)
	document.cookie = 'stil=' + stil + ';' +  'expires=' + expdate.toGMTString()
	top.location.reload();
	}	