// JavaScript Document
<!--

  function merkzettel(artnr_, posid_, preis_, avail_, gewicht_, bez_, link_, img_, target_)
  {
	if (artnr_=='') {
		page = '/php/warenkorb/warenkorb.php'; 
	} else {
		page = '/php/warenkorb/warenkorb.php?add=1&artnr=' + artnr_ + '&posid=' + posid_ + '&preis=' + preis_ + '&avail=' + avail_ + '&gewicht=' + gewicht_ + '&bez=' + bez_ + '&link="' + link_ + '"&img=' + img_ + '&target=' + target_; 
	}

	_width = 700;
	_height = 690;
    _left=(screen.width-_width)-30;
	_top=(screen.height-_height)/2-30;
	korbwin = window.open(page, 'korb', 'top=' + _top + ',left=' + _left + ',width=' + _width + ',height=' + _height + ',toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no');
  }

//-->