/*
 * Copyright (c) A&B FACE2NET GmbH
 *
 * author CFL
 * version $Revision: 1.24 $
 */

konfigurator.popupUrl = "popup.html";

konfigurator.writePopupNote = function() {
  document.writeln("<tr>");
  document.writeln("  <td class=\"start\">");
  document.writeln("    <a href=\"" + konfigurator.popupUrl + "\" target=\"" + konfigurator.popupTarget + "\" title=\"Flexible Edition Konfigurator starten\" onclick=\"konfigurator.openPopup(); return false;\" onmouseover=\"changeImage('start', 'images/start_over.gif'); return true;\" onmouseout=\"changeImage('start', 'images/start.gif'); return true;\"><img src=\"images/start.gif\" name=\"start\" width=\"120\" height=\"34\" alt=\"Flexible Edition Konfigurator starten\" align=\"left\"></a>");
  document.writeln("    <p>Bitte klicken Sie auf &quot;START&quot;, falls sich das Popup-Fenster nicht geöffnet haben sollte.</p>");
  document.writeln("  </td>");
  document.writeln("</tr>");
}

konfigurator.writeFlashUpdateNote = function() {
  document.writeln("<tr>");
  document.writeln("  <td class=\"noFlash\">");
  document.writeln("    <a href=\"http://www.adobe.com/go/getflashplayer\" title=\"Macromedia Flash Player herunterladen\" target=\"_blank\"><img src=\"common/images/get_flash_player.gif\" alt=\"Macromedia Flash Player herunterladen\" width=\"88\" height=\"31\" align=\"left\"></a>");
  document.writeln("    <p>Für die korrekte Darstellung der Website benötigen Sie das aktuelle Flash-Plugin (Version " + konfigurator.requiredFlashVersion + " oder höher).</p>");
  document.writeln("    <p>Sie können das Plugin kostenlos beim Hersteller Macromedia downloaden.</p>");

  if (this.flashVersion.major != 0 || this.flashVersion.minor != 0 || this.flashVersion.rev != 0) {
    document.writeln("    <p>Ihre Flash-Version: " + this.flashVersion.major + "." + this.flashVersion.minor + "." + this.flashVersion.rev + "</p>");
  }

  document.writeln("  </td>");
  document.writeln("</tr>");
}

