function na_open_window(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable)
{
  toolbar_str = toolbar ? 'yes' : 'no';
  menubar_str = menubar ? 'yes' : 'no';
  statusbar_str = statusbar ? 'yes' : 'no';
  scrollbar_str = scrollbar ? 'yes' : 'no';
  resizable_str = resizable ? 'yes' : 'no';
  window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
}

function setimage(image,preis,prodid,element,imgpfad,farbe,liefer,pco) {
	document.images["bild_"+prodid].src = image;
	document.getElementById("preis_"+eval(prodid)).value=preis;
	document.getElementById("liefer_"+eval(prodid)).value=liefer;
	document.getElementById("id2_"+eval(prodid)).value= farbe;
	formac=document.getElementById("einkauf_"+eval(prodid)).action;
	repstr=formac.split("?");
	formac=repstr[0]+'?id='+element+'&pco='+pco;
	document.getElementById("einkauf_"+eval(prodid)).action=formac;
	document.getElementById("a_"+eval(prodid)).href= "javascript:na_open_window('nwin','"+imgpfad+"', 0, 0, 500, 550, 0, 0, 0, 0, 1);void(0);";
}

function setimage_a(image,prodid,element,imgpfad,liefer,pco,colnm,angid) {
	document.images["bild_"+prodid].src = image;
	document.getElementById("liefer_"+prodid).value=liefer;
	formac=document.getElementById("einkauf_"+angid).action;
	repstr=formac.split("?");
	repst=repstr[1].split("&");
	if (colnm=="pcol1")
	{
		nstr='?id='+element+'&pcol1='+pco+'&'+repst[2];
	}
	else
	{
		nstr='?id='+element+'&'+repst[1]+'&pcol2='+pco;
	}
	formac=repstr[0]+nstr;
	document.getElementById("einkauf_"+angid).action=formac;
	document.getElementById("a_"+prodid).href= "javascript:na_open_window('nwin','"+imgpfad+"', 0, 0, 500, 550, 0, 0, 0, 0, 1);void(0);";
}
