/*
* pricelist JS function 
* Konstantin kolev kkolev@dotmedia.bg http://www.dotmedia.bg
*/
function Reload(sender) {          
	if (sender.name == "selectedGroup") {
   	if ((sender.value == -1) && (!confirm("Големината на ценовата листа е 1.2Мб\nЖелаете ли да бъде показана?"))) {
			return;
		}
		document.getElementById("condition").value = "";
   }
	document.getElementById("allcategory").checked = false;	
   document.forms[0].submit();
}		        

function addProduct(id, description, price1, price2, price3, price4, price5, price6, price7, price8, currency, promotion) {
	if (confirm("Желаете ли да добавите продукт " + description + " към кошницата?")) {
		prices =  new Array();
		prices[0] = price1;
		prices[1] = price2;
		prices[2] = price3;
		prices[3] = price4;
		prices[4] = price5;
		prices[5] = price6;
		prices[6] = price7;
		prices[7] = price8;
		base.Add(id, description, prices, currency, promotion);
	}	
}

function loadfunction() {	
	sb = fetchDocumentCookie(document, "order");
	base.unserialize(sb);
}
