function fenster(nr) {
	var ansicht = window.open("../de/muster.html?"+nr, "Muster", "width=450,height=230,scrollbars=yes")
}

function prodfenster(r, l) {
	var rb = "../"+l+"/produkt_"+r+"_det.html"
	var fenster = window.open(rb, "Produktdetails", "width=600,height=400,scrollbars=yes,resizable=yes")
}

var link="";
var ref="http://www.bsm-verpackungen.de/de/anfrage.php";

function anfrage(produkt, artikel) {
	if (la && la != "") {
		link=ref+"?la="+la+"&";
	} else {
		link=ref+"?"
	}
	link+="p="+produkt;
	if (artikel != "") {
		link+="&a="+escape(artikel);
		window.opener.location.href=link;
		this.window.close();
	} else {
		location.href=link;		
	}
}