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

  eval(targ+".location='/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='/basket.php?action=delivery_update&delivery="+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function hide_area(areas) {

	var area_array = areas.split(", ");
	
	for (keyVar in area_array){
		if(document.getElementById){
			document.getElementById(area_array[keyVar]).style.display = "none";		
		}
	}
}


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;
		}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="";
		}
	}
	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;
			}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="";
			}
		}

}


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);
} 
