function ausfuelltest(beispiel, eingabe, formularnr)
{
 // formularnr wird nur durch Seite 488_01_t2 übergeben
  if (beispiel == eingabe)
  {
    alert ("Bitte geben Sie die gewünschten Abmessungen ein.\n'" + beispiel + " ' dient nur zur Veranschaulichung.");
    if (formularnr)
      {
        eval ("document.BESTELL" + formularnr + ".ANFRAGE.focus()");
      }
    else
      {
        document.BESTELL.ANFRAGE.focus();
      }
    return false;
  }
  return true;
}

function Download(linkliste)
{
  link = new Array();
  linkpfad = new Array();
  link = linkliste.split(" ");
  hoehe = 200 + 19*link.length;
  if(hoehe>400) {hoehe = 400;}
  DL = window.open("","PopUp","width=230,height=" + hoehe +",resizable=yes,scrollbars=yes");
  DL.moveTo(screen.width-400,100);
  DL.focus();
  DL.document.open();
  DL.document.bgColor = "#E8F8F0";
  DL.document.writeln("<head>\n<title>SAV - Download</title>");
  DL.document.writeln("<style type='text/css'>\n<!--\n  a {text-decoration:none; color:#663399}\n  a:hover {background:#A0E0C0}\n-->\n</style>\n</head>\n");
  DL.document.writeln("<body>\n<h5 style='font-size:11pt; font-family:Arial,sans-serif'>Following data are now available to download</h5>");
  DL.document.writeln("<div style='font-size:9pt; font-family:Arial,sans-serif'>");
  for(i=0; i<link.length; i++)
  {
    linkpfad = link[i].split("/");
    DL.document.writeln("<a href='../../cad/" + link[i] + "'>" +  linkpfad[linkpfad.length-1] + "</a><br>")
  }
  DL.document.writeln("<br>");
  DL.document.writeln("<b>Note:</b> click right and choose 'Save file as...' to store the required file on your computer.</div>");
  DL.document.writeln("<form><input type='button' value='Close window' onClick='self.close()'></form>\n</body>");
  DL.document.close();
}