// JavaScript Document

function Populate(DropDownID){
	
	opt1 = GetSelectValue('option1');
	opt2 = GetSelectValue('option2');
	opt3 = GetSelectValue('option3');
	opt4 = GetSelectValue('option4');
	try{
		Automated = document.getElementById('Automated').checked;
	}catch(e){
		Automated = 0;
		}
	//Automated=1;
		
	url = '/ajax/options.php?id=' + ProductID + '&current=' + DropDownID  + '&opt1=' + opt1 + '&opt2=' + opt2 +  '&opt3=' + opt3 + '&opt4=' + opt4 + '&Automated=' + Automated;
	//alert(url);
	ajaxCallV2(url,'');
}

function CalculateTotalPrice(UnitPrice){
	Qty = GetSelectValue('Quantity');

	tp = parseFloat(Qty) * parseFloat(UnitPrice);

	
	var ee = document.getElementById('TotalPrice');
	ee.innerHTML = '&pound;' + tp.toFixed(2);
	
}
	
function StartUp(){
	Populate('option0');
	//alert('Start Up');
}	
