function shop_uebersicht(){
	document.warenkorb.action.value='uebersicht';
	document.warenkorb.submit();
}

function shop_bestellen(){
	document.warenkorb.action.value='bestellen';
	document.warenkorb.submit();
}

function shop_bestellformular(){
	update_basket();
	shop_goto_formular();
}
function shop_goto_formular(){
	if(fertig==1){
		document.location.href="/shop/bestellformular/";
	}else{
		setTimeout('shop_goto_formular()',50);
	}
}

