function getStandardWebserverUrlBegin() {
  // return 'http://192.168.1.36:8080'; // local
  // return 'http://217.160.142.130:8090'; // 1&1 Windows
  // return 'http://217.160.91.225'; // 1&1
  // return 'http://144.41.64.104'; // Hohenheim
  // return 'http://195.137.213.21:8090'; // DomainBox2
  // return 'http://217.160.216.243:8080'; // 1&1 Linux Root Server
  return 'http://87.106.49.166:8080'; // 1&1 Linux Virtual Server
}
function runCameleonServletSample() {
  myWindef = open(getStandardWebserverUrlBegin() + '/cookbook/servlet/main', 'cookbook', 'resizable=yes,scrollbars=yes,width=600,height=600,status=yes,location=no,menubar=no,toolbar=no');
  myWindef.focus();
}
function runCameleonJspSample() {
  document.location.href = getStandardWebserverUrlBegin() + '/cookbook/jsp/de/start.jsp';
  return false;
}
function runCameleonJspSampleInEnglish() {
  document.location.href = getStandardWebserverUrlBegin() + '/cookbook/jsp/en/start.jsp';
  return false;
}

