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=170,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.house-of-football.de/shop/style2.css'></head>")
warenkorb.document.write("<body><center><table CELLSPACING=0 BORDER=0 WIDTH=100%>")
warenkorb.document.write("<tr><td ALIGN=CENTER BGCOLOR=#62819D><b><font color=#FFFFFF>Artikel</font></b></td>")
warenkorb.document.write("<td ALIGN=CENTER BGCOLOR=#62819D><b><font color=#FFFFFF>Preis</font></b></td></tr>")
warenkorb.document.write("<tr><td BGCOLOR=#A1C5DD><font size=-1><font color=#000000>",(werte[bestnr].substring(werte[bestnr].lastIndexOf("=") + 2,150)),"</font></font></td>")
warenkorb.document.write("<td ALIGN=RIGHT BGCOLOR=#A1C5DD><font size=-1><font color=#000000>",ppreis[bestnr]/100," EUR</font></font></td></tr></table>")
warenkorb.document.write("<BR><b>wurde in den Warenkorb gelegt.</b>")
warenkorb.document.write("<BR><BR><table BORDER=0 WIDTH=50%><tr><td ALIGN=CENTER BGCOLOR=#62819D><a href='javascript:window.close()'>weiter einkaufen</a></td></tr></table>")
warenkorb.document.write("</CENTER></body></html>")
warenkorb.document.close()
warenkorb.focus();
clearID=warenkorb.setTimeout("self.close()",10000)
}


function index() {
if(!parent.main)
location.href="http://www.house-of-football.de/shop/index2.htm?" + location.href;
}

window.onload=index;

