function printMiniBasket2(){
var $elem = null;
	SMPrice = new cSMPrice();
	SMPrice.decode(SMShop.basket.getAttribute(_SMASubTotal));
	
	var sLink = SMOMAbsoluteRootURL + "/" + "warenkorb.htm";
	
	var subTotal = totalProducts = 0;
	if(SMShop.getAttribute(_SMAOComplete)!="true"){
		totalProducts = SMShop.basket.getAttribute(_SMATotalItems);
		subTotal = cprimary.format((SMShop.getAttribute(_SMAOutGross)!="1") ? SMPrice.net : SMPrice.gross, SM_CGROUP+SM_CSYMBOL);
		};
	var sProduct = parseInt(totalProducts)!=1?'Produkte':'Produkt';
	var sBasket = '';

			sBasket += '<table cellpadding="0" cellspacing="0" border="0" width="201" height="37" style="color:black;font-weight:bold;font-size:12px;margin:0px 0 0px 0">';
			sBasket += '<tr valign="top"><td width="30%" align="right" height="10"><strong>Produkte:&nbsp;</strong></td><td width="55%" style="padding-right:8px" align="right"><strong>' + (totalProducts>0?totalProducts:'0') + '</strong></td></tr>'
			+ '<tr valign="top"><td width="25%" align="right" style="padding-top:8px"><strong>Summe:&nbsp;</strong></td><td width="55%" style="padding-right:8px;padding-top:8px" align="right"><strong>' + subTotal + '</strong></td></tr></table>';

	document.write(sBasket);
};

function printQuickSearch2(showHeader, tableStyle, wrapLink){
	showHeader = showHeader?showHeader:false;
	tableStyle = tableStyle?tableStyle:'def';
	wrapLink = wrapLink?wrapLink:false;
	
	var sLink = SMOMAbsoluteRootURL + "/" + "suche.htm";
	
	var cntHeader = tableStyle!=''?' class="cnt-' + tableStyle + '-header"':'';
	var cntBody = tableStyle!=''?' class="cnt-' + tableStyle + '-body"':'';
	var sHtml = '';

	sHtml += '<form action="#" onsubmit="return(doQuickSearch(this))" style="font-size:13">Schnellsuche:  '
		+ '<input name="dosearch" type="hidden" value="1"><input class="quicksearch-term" style="color:#808080" '
		+ 'name="searchterm" type="text" value="Suchbegriff eingeben" '
		+ 'onfocus="setDefaultSearchTerm(this)" onblur="setDefaultSearchTerm(this)"><input type="image" class="quicksearch-submit" '
		+ 'src="' + SMOMAbsoluteRootURL + '/' + 'images/los.gif" style="width:16;height:16;margin-left:8px"></form>';

	document.write(sHtml);
};
