function auswerten(best_nr, beschreibung, preis, anzahl) {
 var eingabestring = anzahl;

 if ("0123456789".indexOf(eingabestring.charAt(0)) >= 0) {
 parent.kframe.hinzu(best_nr.replace(/-/g,'_'), beschreibung, preis, anzahl);
 } else {
 parent.kframe.doAlert();
 } 
}

function checkFrameset(ziel) {
if(!parent.kframe) {
 var command_raw = "window.location.href=\"" + window.location.href + "/../" + ziel + "?" + location.pathname + "\"";
 var command = command_raw.replace(/\\/gi,"\\\\");
 window.setTimeout(command,1000);
 // leider gibt es hier wohl keine bessere Lösung
 }
}

function checkFrameset2(ziel2) {
if(!parent.kframe) {
 var command = "window.location.href=\"" + ziel2 + "\"";
 window.setTimeout(command,1000);
 }
}

function openPicture(ziel,zurueck) {
 document.open();
 document.writeln('<HTML><HEAD><TITLE>Detailbild</TITLE></HEAD>');
 document.writeln('<BODY bgcolor=white>');
 document.writeln('<img src="',ziel,'">');
 document.writeln('<br><br><br>');
 document.writeln('<left><input size="300" value="',zurueck,'" onclick="window.history.back()" type="button" width="300"></left>');
 document.writeln('</body></html>');
}
//(c) 2002 Iris Strassacker / all rights reserved !