// JavaScript Document
function submitBasket()
{
	document.basket.submit();
}

function completeDeliveryDetails() 
{	
	document.checkout.deliveryName.value = document.checkout.firstname.value + " " + document.checkout.surname.value;
	document.checkout.deliveryAddress1.value = document.checkout.billingAddress1.value;
	document.checkout.deliveryAddress2.value = document.checkout.billingAddress2.value;
	document.checkout.deliveryAddress3.value = document.checkout.billingAddress3.value;
	document.checkout.deliveryTown.value = document.checkout.billingTown.value;
	document.checkout.deliveryCounty.value = document.checkout.billingCounty.value;
	document.checkout.deliveryPostcode.value = document.checkout.billingPostcode.value;
	document.checkout.deliveryCountry.selectedIndex= document.checkout.billingCountry.selectedIndex;
	
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}