var werte	= new Array();  
var ppreis	= new Array();

function auswertung(bestnr){
parent.artikelzufuegen(bestnr,werte[bestnr],ppreis[bestnr]);
warenkorb=window.open("","WK","Toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=0,width=350,height=120,screenX=0,screenY=0,left=0,top=0")
warenkorb.document.open()
warenkorb.document.write("<html><head><title>Warenkorb</title><link rel=stylesheet type='text/css' href='http://www.nativities.de/shop/style2.css'></head>")
warenkorb.document.write("<body><center><table BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH=100%>")
warenkorb.document.write("<tr><td ALIGN=CENTER BGCOLOR=#FFDF9F><b><font color=#000000>Artikel</font></b></td>")
warenkorb.document.write("<td ALIGN=CENTER BGCOLOR=#FFDF9F><b><font color=#000000>Preis</font></b></td></tr>")
warenkorb.document.write("<tr><td BGCOLOR=#EFEFEF><font size=-1>",(werte[bestnr].substring(werte[bestnr].lastIndexOf("#") + 2,150)),"</font></td>")
warenkorb.document.write("<td ALIGN=RIGHT BGCOLOR=#EFEFEF>&nbsp;</td></tr>")
warenkorb.document.write("<tr><td BGCOLOR=#EFEFEF><font size=-1>",werte[bestnr].substring(werte[bestnr].indexOf("#") + 2,werte[bestnr].lastIndexOf("#")),"</font></td>")
warenkorb.document.write("<td ALIGN=CENTER BGCOLOR=#EFEFEF><font size=-1>",ppreis[bestnr]," EUR</font></td></tr></table>")
warenkorb.document.write("<BR><b>wurde in den Warenkorb gelegt.</b>")
warenkorb.document.write("</CENTER></body></html>")
warenkorb.document.close()
parent.wk.location.href="wk.htm";
warenkorb.focus();
clearID=warenkorb.setTimeout("self.close()",8000)
}

function anfrage(bestnr){
seite = "anfrage.php?artikel=" + werte[bestnr].substring(werte[bestnr].lastIndexOf("#") + 2,150);
anfragewin=window.open(seite,"Anfrage","Toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=0,width=400,height=350,screenX=10,screenY=10,left=10,top=10")
anfragewin.document.close()
anfragewin.focus();
}

function colorhilfe()
 {
  BildFenster =
  window.open("colorhilfe.htm", "Hilfe", "width=700,height=600,screenX=10,screenX=10,resizable=yes");
  BildFenster.focus();
 }

function index() {
if(!parent.main)
location.href="http://"+window.location.host+"/shop/index2.htm?" + location.href;
}

window.onload=index;

