//////////////////////////////////////////////////////////////////// wStyleselector.js 1.0.2// erstellt durch Scholl Communications AG, 77694 Kehl, www.scholl.de// erstellt mit WeblicationŽ Content Management Server, www.weblication.de//////////////////////////////////////////////////////////////////function showStyleSector(){  document.write('<form style="display:inline" action="styleSelector"><select id="selectbox" onchange="if(this.selectedIndex > 0){selectStyle(this.options[this.selectedIndex].value);}">');  document.write('<option selected disabled>Ansicht wechseln</option>');  document.write('<option value="text" title="Reine Textversion ohne Formatierungen und Bilder"> Nur Text</option>');  document.write('<option value="default" title="Standardansicht mit Formatierungen und Bilder"> Standardansicht</option>');  document.write('</select></form>');}function selectStyle(styleNew) {  if(!styleNew || styleNew == ''){;    var getStyleReg = /styleCurrent=(\w+)/;    if(getStyleReg.test(document.cookie) == true){      styleNew = RegExp.$1;    }    else{      styleNew = '';    }  }  if(styleNew != ''){    if(styleNew == 'default'){      styleNew = '';    }    var stylesAll = document.getElementsByTagName('link');    for(var i = 0; i < stylesAll.length; i++){      if(stylesAll[i].title == styleNew){        stylesAll[i].disabled = false      }      else{        stylesAll[i].disabled = true      }    }    document.cookie = 'styleCurrent=' + styleNew + ';path=/';  }}
