// JavaScript Document
<!--

function warenkorb(artnr_, posid_, anz_, preis_, avail_, gewicht_, groesse_, farbe_, bez_, link_, img_, target_)
{
	if (artnr_=='') {
/*
		page = '/php/warenkorb/warenkorb.php'; 
		_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');
*/
	} else {
		page = '/php/warenkorb/warenkorb.php?add=1&artnr=' + artnr_ + '&anzahl=' + anz_ + '&posid=' + posid_ + '&preis=' + preis_ + '&avail=' + avail_ + '&groesse=' + groesse_ + '&farbe=' + farbe_ + '&gewicht=' + gewicht_ + '&bez=' + bez_ + '&link="' + link_ + '"&img=' + img_ + '&target=' + target_; 
		self.location = page + '&location='+encodeURIComponent(self.location.href);
	}
}

//-->