if(document.cookie.indexOf('style=XS')>=0) document.write('<link rel="stylesheet type="text/css" href="s_xs.css" />\n'); 
else if (document.cookie.indexOf('style=S')>=0) document.write('<link rel="stylesheet" type="text/css" href="s_s.css" />\n'); 
else if (document.cookie.indexOf('style=M')>=0) document.write('<link rel="stylesheet" type="text/css" href="s_m.css" />\n');
else if (document.cookie.indexOf('style=L')>=0) document.write('<link rel="stylesheet" type="text/css" href="s_l.css" />\n');
else if (document.cookie.indexOf('style=XL')>=0) document.write('<link rel="stylesheet" type="text/css" href="s_xl.css" />\n');
else if (document.cookie.indexOf('style=XXL')>=0) document.write('<link rel="stylesheet" type="text/css" href="s_xxl.css" />\n');
else document.write('<link rel="stylesheet" type="text/css" href="s_m.css" />\n'); 


function auswahl(wert) { 
//   document.location.reload(true);

var expdate = new Date();
expdate.setTime(expdate.getTime() + (1000*60)); //URL für Refresh 1 Minute gültig
setCookie('lasturl',window.location.href,null,expdate,'/',null);

var expdate = new Date();
expdate.setTime(expdate.getTime() + (1000*3600*24*7));  //Fonteinstellungen 7 Tage gültig
setCookie('style',wert,null,expdate,'/',null);
//alert(wert);       
//alert(getCookie('lasturl'));  

return (window.open("styleswitcherreload.php",'_self')==null);
   
}
