function S(option) {
  document.getElementById('decorations').href = theme + '_' + option + '.css';
}

function D() {
  var ancor = window.location.hash.slice(1);
  if (ancor) {
    S(ancor);
  } else {
    S(default_option);
  }
}
onLoad=D();

function ShowBrowserWarning() {
  //document.write('|'+ navigator.appName +'|'+ navigator.appVersion +'|<br>');
  if (navigator.appName == "Microsoft Internet Explorer") {
    document.write('Probably your WEB browser will not display the page correctly. '
      + 'You may try <a href="http://firefox.com/">more powerful, safe and easy to use WEB browser</a> instead ;)'
    );
  }
}
