function styleswitche(tt,hodnotacookie,styl) {
     var predchozi = -1;
	 var stylu = 5;

     // nastaveni tučnosti vybraneho stylu
     for (i=1; i<=stylu; i++) {   
   	   document.getElementById('styl'+i).style.fontWeight = 'normal';	 
	 }
 	 document.getElementById(styl).style.fontWeight = 'bold';
     // nastavení cookies
	 if (hodnotacookie != 'print') {
 	   var datum=new Date();
	   var dobaPlatnosti = 365*24*60*60*1000;
	   datum.setTime(datum.getTime()+dobaPlatnosti);
       document.cookie = "styl="+hodnotacookie+"; expires="+datum.toGMTString()+"; path=/";
	 }
	 // prepnuti stylu
     for (i=0; i<document.styleSheets.length; i++) {   
	   var s = document.styleSheets[i];
       if (s.disabled == false) if (s.media == 'screen') predchozi = i;
     }
     for (i=0; i<document.styleSheets.length; i++) {
       var s = document.styleSheets[i];
       var ti=s.title;
       if (ti!='' && ti!=undefined && ti!=tt) s.disabled = true; else s.disabled=false;
     }
	 
	 // reload pri odkazech
	 var adresa = document.location + "$";
	 var poradi = adresa.indexOf('odkazy');
	 if (poradi > 1) if (hodnotacookie != 'print') document.reload(); 
	 return(predchozi);
}