function MM_jumpMenu(targ,selObj,restore,id){ //v3.0

  eval(targ+".location='/shop/basket.php?action=update&id="+id+"&quantity="+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function MM_jumpMenu2(targ,selObj,restore,id){ //v3.0

  eval(targ+".location='/shop/basket.php?action=delivery_update&delivery="+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function MM_jumpMenu3(targ,selObj,restore,id){ //v3.0

  eval(targ+".location='/shop/basket.php?action=delivery_discount_update&option="+selObj.checked+"'");
  if (restore) selObj.selectedIndex=0;
}

function Popup(url, width, height, scrollbars, resizable) {
new_window = window.open (url, "new_window","location=0,status=0,menubar=0,resizable=0,scrollbars=" + scrollbars + ",width=" + width + ",height=" + height);
new_window.moveTo(0,0);
} 

function delivery(){
	if(document.getElementById){
		if(document.getElementById('same_as').checked == true){
			document.getElementById('delivery_address').value=document.getElementById('address').innerHTML;
			document.getElementById('delivery_town').value=document.getElementById('town').innerHTML;
			document.getElementById('delivery_county').value=document.getElementById('county').innerHTML;
			document.getElementById('delivery_postal_code').value=document.getElementById('postal_code').innerHTML;
			document.getElementById('delivery_country').value=document.getElementById('country').innerHTML;
			document.getElementById('delivery_state').value=document.getElementById('state').innerHTML;
		}else{
			document.getElementById('delivery_address').value="";
			document.getElementById('delivery_town').value="";
			document.getElementById('delivery_county').value="";
			document.getElementById('delivery_postal_code').value="";
			document.getElementById('delivery_country').value="";
			document.getElementById('delivery_state').value="";
		}
	}
	if(document.all){
		if(document.all['same_as'].checked == true){
			document.all['delivery_address'].value=document.all['address'].innerHTML;
			document.all['delivery_town'].value=document.all['town'].innerHTML;
			document.all['delivery_county'].value=document.all['county'].innerHTML;
			document.all['delivery_postal_code'].value=document.all['postal_code'].innerHTML;
			document.all['delivery_country'].value=document.all['country'].innerHTML;
			document.all['delivery_state'].value=document.all['state'].innerHTML;
			}else{
			document.all['delivery_address'].value="";
			document.all['delivery_town'].value="";
			document.all['delivery_county'].value="";
			document.all['delivery_postal_code'].value="";
			document.all['delivery_country'].value="";
			document.all['delivery_state'].value="";
			}
		}

}
