function showLevelStep(element,price,start,end){
	//var levelElements = element.parentNode.childNodes;
	element.style.background = 'url("/style/img/60.png")';
	element.innerHTML = '<div style="background-image:url(style/img/bubble.png);padding-left:22px;padding-top:5px;position:relative;left:-30px;top:-100px;width:128px;height:95px;color:white;">Von: ' + start + ' bis ' + end + '<br>Preis: ' + price + ' €</div>';
}

function hideLevelStep(element){
	element.style.background = '';
	element.innerHTML = '';
}

function orderAuctionItem(auId,auaId,quantity,auAGBS,cId)
{
	if(auAGBS == true){
		$.post(
			"admin/frontend/handleAuction.php",{
				action	: 'addEditAuctionOrder', 
				auoId	: 0,
				auocId	: cId,
				auoauId	: auId,
				auoauaId: auaId,
				auoauaQuantity: quantity
			}, 
			function(data){
				location.href='index.php?action=auctionReady';
		});
	}else{
		$('#checkAGBText').css('color','#CB0203');
		$('#AuctionError').text('Bitte bestätigen Sie die AGBs');
		$('#AuctionError').css('color','#CB0203');
	}
	
}

